-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
61 lines (57 loc) · 1.45 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
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "telescope"
version = "0"
description = ""
authors = []
[tool.poetry.dependencies]
python = "~3.8.5"
aiohttp = "^3.7.4"
toml = "^0.10.2"
dockerflow = "^2021.7.0"
async-timeout = "^3.0.1"
sentry-sdk = "^1.4.3"
termcolor = "^1.1.0"
aiohttp_cors = "^0.7.0"
backoff = "^1.11.1"
python-decouple = "^3.5"
logging-color-formatter = "^1.0.2"
google-cloud-bigquery = "^2.28.1"
# Extra dependencies for checks.
kinto-http = { version = "^10.7.0", optional = true }
cryptography = { version = "^35.0.0", optional = true }
websockets = { version = "^10.0", optional = true }
requests = { version = "^2.26.0", optional = true }
beautifulsoup4 = { version = "^4.10.0", optional = true }
autograph-utils = { version = "^0.1.1", optional = true }
canonicaljson-rs = { version = "^0.3.0", optional = true }
taskcluster = { version = "^44.1.0", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
aioresponses = "^0.7.2"
pytest-aiohttp = "^0.3.0"
black = "^21.9b0"
flake8 = "^4.0.1"
mypy = "^0.910"
pytest-cov = "^3.0.0"
isort = "^5.9.3"
bandit = "^1.7.0"
responses = "^0.14.0"
types-toml = "^0.10.1"
types-requests = "^2.25.11"
types-termcolor = "^1.1.2"
[tool.poetry.extras]
remotesettings = [
"kinto-http",
"cryptography",
"websockets",
"requests",
"beautifulsoup4",
"autograph-utils",
"canonicaljson-rs",
]
taskcluster = [
"taskcluster",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"