-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.14 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
[tool.poetry]
name = "cue-backend"
version = "0.1.0"
description = "AWS code and infrastucture for the CUE enterprise product"
authors = ["Navaneeth Selvaraj <ns0066@uah.edu>", "Davis Gaunt <bdg0015@uah.edu>"]
license = "Apache-2.0"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "~0.112.2"
pydantic = {extras = ["email"], version = "~2.8.2"}
uvicorn = "~0.30.6"
python-dotenv = "~1.0.1"
mangum = "~0.17.0"
boto3 = "~1.35.7"
asyncpg = "^0.30.0"
python-jose = {extras = ["cryptography"], version = "^3.3.0"} # Added: For JWT
warrant = "^0.6.1" # Added: For Cognito SRP
requests = "^2.32.3" # Added for jwks fetch
structlog = "~25.4.0"
httpx = "~0.28.1"
aws-xray-sdk = "~2.14.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
pytest-asyncio = "^0.23.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options] # Add this section for pytest configuration
asyncio_mode = "auto"
pythonpath = [
".", "src/python"
]
testpaths = ["tests", "src/python/api/tests"]
addopts = "-v -s --tb=short --cov=src/python --cov-report term-missing --cov-fail-under=80"