pyproject.toml (513B)
1 [tool.poetry] 2 name = "qm-try-analysis" 3 version = "0.1.0" 4 description = "" 5 authors = [ 6 "Jens Stutte <jstutte@mozilla.com>", 7 "Michael van Straten <mvanstraten@mozilla.com>", 8 ] 9 readme = "README.md" 10 11 [tool.poetry.dependencies] 12 python = "^3.9" 13 click = "^8.1.7" 14 requests = "^2.31.0" 15 bugzilla = "^1.0.0" 16 17 [tool.poetry.scripts] 18 qm-try-analysis = "qm_try_analysis.cli:cli" 19 20 [tool.poetry.group.dev.dependencies] 21 pytest = "^7.4.3" 22 23 [build-system] 24 requires = ["poetry-core"] 25 build-backend = "poetry.core.masonry.api"