-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.44 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
62
63
64
65
66
67
68
69
[tool.poetry]
name = "test-observer"
version = "0.0.0"
description = "Observe the status and state of certification tests for various artefacts"
authors = []
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.101.1"
uvicorn = { extras = ["standard"], version = "^0.21.1" }
sqlalchemy = "^2.0.16"
pg8000 = "^1.29.4"
alembic = "^1.10.3"
poetry-dynamic-versioning = { extras = ["plugin"], version = "^0.25.0" }
requests = "^2.31.0"
sentry-sdk = "0.10.2"
launchpadlib = "^1.11.0"
email-validator = "^2.1.0.post1"
celery = { extras = ["redis"], version = "^5.3.6" }
aiohttp = "^3.9.4"
[tool.poetry.group.dev.dependencies]
mypy = "^1.3.0"
ruff = "^0.0.270"
types-requests = "^2.31.0.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
requests-mock = "^1.10.0"
python-multipart = "^0.0.18"
httpx = "^0.24.0"
sqlalchemy-utils = "^0.41.1"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
metadata = "true"
tagged-metadata = "true"
[tool.ruff]
select = [
"E",
"F",
"B",
"N",
"UP",
"ANN",
"C4",
"T20",
"SIM",
"ARG",
"ERA",
"PLE",
"TID252",
]
ignore = ["ANN201", "ANN003", "N999", "ANN101", "ANN204", "N818", "B008"]
[tool.mypy]
exclude = "charm/*"
explicit_package_bases = true
[[tool.mypy.overrides]]
module = "celery.*"
ignore_missing_imports = true
[build-system]
requires = ["poetry-core", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"