1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
[tool.poetry]
name = "test8"
version = "0.1.0"
description = ""
authors = ["Nobody Smith <nobody@nowhere.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.3"
requests = ">=2.25,<2.27"
twine = "~3.8"
click = "==8.0.4"
pyroma = {version = ">=2.4", optional = true}
mytestdependency = {git = "ssh://git@github.com/MyOrg/MyRepo.git",rev = "1.2.3"}
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|