forked from mozilla/mozci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 886 Bytes
/
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
[tool.poetry]
name = "mozci"
version = "2.0.2"
description = ""
authors = [
"Andrew Halberstadt <ahal@mozilla.com>",
"Marco Castelluccio <marco@mozilla.com>",
]
[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"
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.13"
pytest = "^6.2"
tox = "^3.23"
responses = "^0.13"
sphinx = "^4.0.2"
[tool.poetry.extras]
adr = ["adr"]
[build-system]
requires = ["poetry>=1.0.2"]
build-backend = "poetry.masonry.api"