-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 771 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 771 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
[project]
name = "fullstack-fastapi"
version = "0.1.0"
description = "A fullstack FastAPI template with PostgreSQL"
requires-python = ">=3.12"
dependencies = [
"fastapi[standard]",
"uvicorn[standard]",
"sqlalchemy[asyncio]>=2.0",
"pydantic>=2.7.0",
"pydantic-settings",
"aiosqlite",
"asyncpg",
"psycopg2-binary",
"python-dotenv",
"itsdangerous",
"orjson",
"httptools",
"uvloop; sys_platform != 'win32'",
"anyio",
"ruff>=0.15.2",
]
[project.optional-dependencies]
dev = [
"pytest",
"anyio[trio]",
"httpx",
"locust",
]
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"