-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 874 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 874 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bcsd-api"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"pydantic-settings>=2.7.0",
"gspread>=6.1.0",
"google-auth>=2.38.0",
"google-api-python-client>=2.165.0",
"python-jose[cryptography]>=3.3.0",
"resend>=2.0.0",
"authzed>=1.0.0",
"sqlalchemy>=2.0",
"psycopg[binary]>=3.1",
"alembic>=1.13",
"strawberry-graphql[fastapi]>=0.235.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-mock>=3.0",
"httpx>=0.27.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.uvicorn]
reload = true
reload-excludes = ["infra/*", "docs/*", ".github/*", "*.md", "*.json"]
[tool.setuptools.packages.find]
where = ["src"]