-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (66 loc) · 1.76 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
70
71
72
73
74
[tool.poetry]
name = "navigator_backend"
version = "1.19.16"
description = ""
authors = ["CPR-dev-team <[email protected]>"]
packages = [{ include = "app" }, { include = "tests" }]
[tool.poetry.dependencies]
python = "^3.10"
Authlib = "^0.15.5"
bcrypt = "^3.2.0"
boto3 = "^1.26"
cpr_sdk = { version = "1.9.5", extras = ["vespa"] }
fastapi = "^0.104.1"
fastapi-health = "^0.4.0"
fastapi-pagination = { extras = ["sqlalchemy"], version = "^0.12.19" }
httpx = "^0.22.0"
itsdangerous = "^2.1.0"
json-logging = "^1.3.0"
pandas = "^2.2.2"
passlib = "^1.7.4"
psycopg2-binary = "^2.9.3"
PyJWT = "^2.3.0"
python-multipart = "^0.0.5"
python-slugify = "^6.1.2"
requests = "^2.28"
requests-toolbelt = "^1.0.0"
SQLAlchemy = "^1.4.31"
SQLAlchemy-Utils = "^0.38.2"
starlette = "^0.27.0"
tenacity = "^8.0.1"
uvicorn = { extras = ["standard"], version = "^0.20.0" }
botocore = "^1.34.19"
db-client = { git = "https://github.com/climatepolicyradar/navigator-db-client.git", tag = "v3.8.25" }
urllib3 = "<2"
apscheduler = "^3.10.4"
numpy = "1.26.4"
python-dateutil = "^2.9.0.post0"
[tool.poetry.dev-dependencies]
black = "^23.1.0"
moto = { version = "^3.0.3", extras = ["s3"] }
pytest = "^7.0.1"
pytest-asyncio = "^0.18.3"
python-dotenv = "^0.19.2"
pytest-mock = "^3.7.0"
pyright = "^1.1.384"
ruff = "^0.6.9"
types-SQLAlchemy = "^1.4.31"
[tool.poetry.group.dev.dependencies]
surrogate = "^0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-p no:cacheprovider"
markers = ["cors", "search", "unit"]
asyncio_mode = "strict"
[tool.pydocstyle]
ignore = """
"""
[tool.pyright]
include = ["app", "tests"]
exclude = ["**/__pycache__"]
ignore = ["scripts/**/*"]
pythonVersion = "3.10"
pythonPlatform = "Linux"
venv = "backend"