-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (63 loc) · 1.63 KB
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
70
71
[tool.poetry]
name = "workerfacing-api"
version = "0.2.1"
description = "Worker-facing API of DECODE OpenCloud."
authors = ["Arthur Jaques <[email protected]>"]
readme = "README.md"
requires-poetry = "2.1.3"
[tool.poetry.dependencies]
python = "3.11.10"
boto3 = "1.35.64"
botocore = "^1.35.41"
deprecated = "^1.2.14"
python-dotenv = "^1.0.1"
dict-hash = "^1.3.4"
fastapi = "0.115.6"
fastapi-cloudauth = "^0.4.3"
fastapi-utils = "0.8.0"
httpx = "^0.27.2"
pydantic = "^2.9.2"
python-multipart = ">=0.0.18"
requests = "^2.32.3"
gunicorn = "^23.0.0"
uvicorn = "^0.32.0"
typing-inspect = "^0.9.0"
psycopg2-binary = "^2.9.10"
sqlalchemy = "^2.0.36"
boto3-stubs = {extras = ["full"], version = "^1.35.86"}
[tool.poetry.group.dev.dependencies]
botocore-stubs = "^1.35.41"
moto = "^5.0.17"
mypy = "^1.12.0"
pre-commit = "^4.0.1"
pytest = "^8.3.3"
ruff = "^0.6.9"
types-deprecated = "^1.2.9.20240311"
types-requests = "^2.32.0.20240914"
pytest-cov = "^5.0.0"
docker = "^7.1.0"
toml = "^0.10.2"
types-toml = "^0.10.8.20240310"
types-docker = "^7.1.0.20240827"
ipython = "^8.29.0"
[build-system]
requires = ["poetry-core==1.9.1"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
docker-build = "scripts.docker:build"
docker-serve = "scripts.docker:serve"
docker-stop = "scripts.docker:stop"
docker-cleanup = "scripts.docker:cleanup"
serve = "scripts.serve:main"
[tool.pytest.ini_options]
markers = [
"aws: requires aws credentials",
"deprecated: tests for deprecated features",
]
addopts = "-m 'not aws'"
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.per-file-ignores]
"workerfacing_api/main.py" = ["E402"]
[tool.mypy]
strict = true