Skip to content

Instantly share code, notes, and snippets.

@esciara
Created August 29, 2019 09:03
Show Gist options
  • Save esciara/aee9b5ed11f9af7b907df9ae6d656caa to your computer and use it in GitHub Desktop.
Save esciara/aee9b5ed11f9af7b907df9ae6d656caa to your computer and use it in GitHub Desktop.
[tool.poetry]
name = "test"
version = "0.1.0"
description = ""
authors = ["Emmanuel Sciara"]
license = "BSD-3-Clause"
[tool.poetry.dependencies]
python = "~3.6"
# Using a similar approach to `tox` (see `setup.cfg` and `tox.ini` files at https://github.com/tox-dev/tox)
# and creating extras for use in `tox.ini` instead of using [tool.poetry.dev-dependencies]
#
# Optional dependencies to be part of `testing` extra
pytest = {version = "^5.0", extras = ["testing"]}
# Optional dependencies to be part of `bdd` extra
behave = {version = "^1.2", extras = ["bdd"]}
gitpython = {version = "^3.0", extras = ["bdd"]}
python-gitlab = {version = "^1.10", extras = ["bdd"]}
PyHamcrest = {version = "^1.9", extras = ["bdd"]}
[tool.poetry.dev-dependencies]
tox = "^3.13"
bump2version = "^0.5.10"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment