forked from mozilla/mozci
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.04 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "mozci"
version = "2.0.3"
description = ""
authors = [
"Andrew Halberstadt <[email protected]>",
"Marco Castelluccio <[email protected]>",
]
[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", optional = true}
python3-memcached = {version = "~1", optional = true}
redis = {version = "~3", optional = true}
requests = "~2"
flake8 = ">=3,<5"
pyyaml = "~5"
taskcluster = ">=38"
lru-dict = "^1.1.7"
# Optional dependencies
adr = { version = "~0", optional = true }
ValidX = "^0.7"
[tool.poetry.dev-dependencies]
pre-commit = "^2.15"
pytest = "^6.2"
tox = "^3.24"
responses = "^0.14"
sphinx = "^4.2.0"
[tool.poetry.extras]
adr = ["adr"]
cache = ["boto3", "python3-memcached", "redis", "zstandard"]
cache-s3 = ["boto3"]
cache-memcached = ["python3-memcached"]
cache-redis = ["redis"]
cache-seeded-file = ["zstandard"]
[build-system]
requires = ["poetry>=1.0.2"]
build-backend = "poetry.masonry.api"