2019-11-28 23:54:36 +03:00
|
|
|
[tool.poetry]
|
|
|
|
name = "mozci"
|
2024-05-31 11:22:02 +03:00
|
|
|
version = "2.4.1"
|
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
|
|
|
|
2021-11-03 21:49:46 +03:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
mozci = 'mozci.console.application:cli'
|
|
|
|
|
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}
|
2021-11-16 17:14:53 +03:00
|
|
|
zstandard = {version = "~0"}
|
2020-12-02 19:21:21 +03:00
|
|
|
python3-memcached = {version = "~1", optional = true}
|
2023-09-06 18:48:23 +03:00
|
|
|
redis = {version = ">=3,<6", optional = true}
|
2020-12-02 19:21:21 +03:00
|
|
|
requests = "~2"
|
2021-10-12 16:46:42 +03:00
|
|
|
flake8 = ">=3,<5"
|
2022-03-01 22:02:58 +03:00
|
|
|
pyyaml = ">=5,<7"
|
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
|
2023-06-21 19:38:36 +03:00
|
|
|
ValidX = ">=0.7,<0.9"
|
2023-04-11 21:53:11 +03:00
|
|
|
cleo = "^2.0.1"
|
2022-10-18 01:15:13 +03:00
|
|
|
tabulate = ">=0.8.9,<0.10.0"
|
2022-02-02 19:07:15 +03:00
|
|
|
arrow = "^1.2.2"
|
2022-03-01 22:32:20 +03:00
|
|
|
markdown2 = "^2.4.2"
|
2022-05-31 12:57:14 +03:00
|
|
|
json-e = "^4.4.3"
|
2021-01-05 18:41:53 +03:00
|
|
|
|
2019-11-28 23:54:36 +03:00
|
|
|
[tool.poetry.dev-dependencies]
|
2022-07-16 02:36:27 +03:00
|
|
|
pre-commit = "^2.20"
|
2023-09-06 18:57:21 +03:00
|
|
|
pytest = "^7.4"
|
2023-09-06 18:24:24 +03:00
|
|
|
tox = "^4.8"
|
2022-03-22 19:55:34 +03:00
|
|
|
responses = "^0.20"
|
2022-10-18 01:20:19 +03:00
|
|
|
sphinx = "^5.3.0"
|
2019-11-28 23:54:36 +03:00
|
|
|
|
2021-01-05 18:41:53 +03:00
|
|
|
[tool.poetry.extras]
|
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"
|