2019-11-28 23:54:36 +03:00
|
|
|
[tool.poetry]
|
|
|
|
name = "mozci"
|
2021-06-16 17:05:51 +03:00
|
|
|
version = "2.0.3"
|
2019-11-28 23:54:36 +03:00
|
|
|
description = ""
|
2019-12-02 18:11:36 +03:00
|
|
|
authors = [
|
|
|
|
"Andrew Halberstadt <ahal@mozilla.com>",
|
2019-12-02 19:46:52 +03:00
|
|
|
"Marco Castelluccio <marco@mozilla.com>",
|
2019-12-02 18:11:36 +03:00
|
|
|
]
|
2019-11-28 23:54:36 +03:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2020-12-02 19:21:21 +03:00
|
|
|
python = ">=3.7,<4"
|
|
|
|
taskcluster_urls = "~13"
|
|
|
|
appdirs = "~1"
|
|
|
|
loguru = "~0"
|
|
|
|
cachy = "~0"
|
|
|
|
tomlkit = "~0"
|
|
|
|
boto3 = {version = "~1", optional = true}
|
|
|
|
zstandard = {version = "~0", optional = true}
|
|
|
|
python3-memcached = {version = "~1", optional = true}
|
|
|
|
redis = {version = "~3", optional = true}
|
|
|
|
requests = "~2"
|
2021-10-12 16:46:42 +03:00
|
|
|
flake8 = ">=3,<5"
|
2021-01-06 03:39:15 +03:00
|
|
|
pyyaml = "~5"
|
2021-01-14 22:09:48 +03:00
|
|
|
taskcluster = ">=38"
|
2021-04-12 17:01:02 +03:00
|
|
|
lru-dict = "^1.1.7"
|
2019-11-28 23:54:36 +03:00
|
|
|
|
2021-01-05 18:41:53 +03:00
|
|
|
# Optional dependencies
|
|
|
|
adr = { version = "~0", optional = true }
|
2021-04-15 20:42:20 +03:00
|
|
|
ValidX = "^0.7"
|
2021-01-05 18:41:53 +03:00
|
|
|
|
2019-11-28 23:54:36 +03:00
|
|
|
[tool.poetry.dev-dependencies]
|
2021-09-07 21:43:30 +03:00
|
|
|
pre-commit = "^2.15"
|
2021-02-01 11:00:49 +03:00
|
|
|
pytest = "^6.2"
|
2021-10-12 17:27:39 +03:00
|
|
|
tox = "^3.24"
|
2021-11-02 15:46:10 +03:00
|
|
|
responses = "^0.15"
|
2021-10-12 17:39:39 +03:00
|
|
|
sphinx = "^4.2.0"
|
2019-11-28 23:54:36 +03:00
|
|
|
|
2021-01-05 18:41:53 +03:00
|
|
|
[tool.poetry.extras]
|
|
|
|
adr = ["adr"]
|
2021-10-13 16:34:00 +03:00
|
|
|
cache = ["boto3", "python3-memcached", "redis", "zstandard"]
|
|
|
|
cache-s3 = ["boto3"]
|
|
|
|
cache-memcached = ["python3-memcached"]
|
|
|
|
cache-redis = ["redis"]
|
|
|
|
cache-seeded-file = ["zstandard"]
|
2021-01-05 18:41:53 +03:00
|
|
|
|
2019-11-28 23:54:36 +03:00
|
|
|
[build-system]
|
2020-02-12 19:11:54 +03:00
|
|
|
requires = ["poetry>=1.0.2"]
|
2019-11-28 23:54:36 +03:00
|
|
|
build-backend = "poetry.masonry.api"
|