-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (55 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
59 lines (55 loc) · 1.28 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
[project]
name = "pydantic-ai-production-ready-template"
version = "0.1.0"
description = "Pydantic AI Production Ready Template"
readme = "README.md"
requires-python = ">=3.13,<3.14"
dependencies = [
"pydantic-ai>=1.13.0",
"fastapi>=0.121.1",
"loguru>=0.7.3",
"pydantic-settings>=2.12.0",
"python-dotenv>=1.2.1",
"SQLAlchemy>=2.0.44",
"alembic>=1.17.1",
"asyncpg>=0.31.0",
"greenlet>=3.2.4",
"redis>=7.1.0",
"fastapi-guard>=4.2.1",
"python-jose[cryptography]>=3.3.0",
"starlette-admin>=0.15.1",
"bcrypt>=5.0.0",
"itsdangerous>=2.2.0",
"typer>=0.20.0",
]
[dependency-groups]
dev = [
"aiosqlite>=0.20.0",
"cookiecutter>=2.6.0",
"cookiecutter-data-science>=2.3.0",
"httpx>=0.27.2",
"ipykernel>=7.1.0",
"jupyter>=1.1.1",
"nox>=2025.5.1",
"pre-commit>=4.3.0",
"pyright>=1.1.406",
"pytest>=8.4.2",
"pytest-asyncio>=0.24.0",
"pytest-cov>=7.0.0",
"ruff>=0.14.0",
"types-passlib>=1.7.7.20250602",
"types-python-jose>=3.5.0.20250531",
"pydantic-evals[logfire]>=1.16.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
exclude = [
"alembic",
".venv",
"venv",
"__pycache__",
]