-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (61 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (61 loc) · 1.73 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
[project]
name = "cdk"
version = "0.1.0"
description = "OpenAQ REST API deployment"
authors = [
{name = "Russ Biggs",email = "russ@openaq.org"},
{name = "Christian Parker", email = "chris@talloaks.io"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
## openaq_api
"fastapi (>=0.115.11,<0.116.0)",
"python-dotenv (>=1.1.0,<2.0.0)",
"pydantic (>=2.11.0,<3.0.0)",
"pydantic-settings (>=2.8.1,<3.0.0)",
"asyncpg (>=0.30.0,<0.31.0)",
"orjson (>=3.10.15,<4.0.0)",
"redis (>=5.2.1,<6.0.0)",
"mangum (>=0.19.0,<0.20.0)",
"uvicorn (>=0.34.0,<0.35.0)",
"starlette (>=0.46.1,<0.47.0)",
"buildpg (>=0.4,<0.5)",
"aiocache (>=0.12.3,<0.13.0)",
"pyhumps (>=3.8.0,<4.0.0)",
"annotated-types (>=0.7.0,<0.8.0)",
"jinja2 (>=3.1.6,<4.0.0)",
## cloudfront_logs
"s3transfer (>=0.11.4,<0.12.0)",
"six (>=1.17.0,<2.0.0)",
"urllib3 (>=2.3.0,<3.0.0)",
"python-dateutil (>=2.9.0.post0,<3.0.0)",
"jmespath (>=1.0.1,<2.0.0)",
# "pyhumps (>=3.8.0,<4.0.0)",
# "python-dotenv (>=1.1.0,<2.0.0)",
# "pydantic (>=2.11.0,<3.0.0)",
# "pydantic-settings (>=2.8.1,<3.0.0)",
# "annotated-types (>=0.7.0,<0.8.0)"
"boto3 (>1.34.0)"
]
[tool.poetry.group.deploy.dependencies]
aws-cdk-lib = "^2.186.0"
docker = "^7.1.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.5"
httpx = "^0.28.1"
[tool.poetry.group.lint.dependencies]
ruff = "^0.9.10"
black = "^25.1.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "openaq_api"
log_format = "[%(asctime)s] %(levelname)s [%(name)s:%(lineno)s] %(message)s"
log_date_format = "%H:%M:%S"
log_level = "DEBUG"
filterwarnings = [
"ignore::DeprecationWarning"
]