mozci/pyproject.toml

55 строки
1.1 KiB
TOML
Исходник Обычный вид История

2019-11-28 23:54:36 +03:00
[tool.poetry]
name = "mozci"
2023-05-19 21:26:14 +03:00
version = "2.3.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
[tool.poetry.scripts]
mozci = 'mozci.console.application:cli'
2019-11-28 23:54:36 +03:00
[tool.poetry.dependencies]
python = ">=3.7,<4"
taskcluster_urls = "~13"
appdirs = "~1"
loguru = "~0"
cachy = "~0"
tomlkit = "~0"
boto3 = {version = "~1", optional = true}
zstandard = {version = "~0"}
python3-memcached = {version = "~1", optional = true}
redis = {version = ">=3,<5", optional = true}
requests = "~2"
flake8 = ">=3,<5"
pyyaml = ">=5,<7"
2021-01-14 22:09:48 +03:00
taskcluster = ">=38"
lru-dict = "^1.1.7"
2019-11-28 23:54:36 +03:00
# Optional dependencies
ValidX = "^0.7"
cleo = "^2.0.1"
tabulate = ">=0.8.9,<0.10.0"
arrow = "^1.2.2"
markdown2 = "^2.4.2"
json-e = "^4.4.3"
2019-11-28 23:54:36 +03:00
[tool.poetry.dev-dependencies]
pre-commit = "^2.20"
pytest = "^7.3"
tox = "^4.5"
responses = "^0.20"
sphinx = "^5.3.0"
2019-11-28 23:54:36 +03:00
[tool.poetry.extras]
cache = ["boto3", "python3-memcached", "redis", "zstandard"]
cache-s3 = ["boto3"]
cache-memcached = ["python3-memcached"]
cache-redis = ["redis"]
cache-seeded-file = ["zstandard"]
2019-11-28 23:54:36 +03:00
[build-system]
requires = ["poetry>=1.0.2"]
2019-11-28 23:54:36 +03:00
build-backend = "poetry.masonry.api"