-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 832 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 832 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
[tool.poetry]
name = "simple_fastapi"
version = "0.1.0"
description = "Basic FastAPI template with SQLAlchemy and Alembic"
authors = ["Nikolay Baryshnikov <root@k0d.ru>"]
package-mode = false
[tool.poetry.dependencies]
python = ">=3.11,<3.15"
alembic = "^1.18.4"
certifi = "^2026.2.25"
fastapi = "^0.135.3"
gunicorn = "^25.3.0"
h11 = "^0.16.0"
idna = "^3.11"
jinja2 = "^3.1.6"
pygments = "^2.20.0"
prometheus-client = "^0.23.1"
psycopg2-binary = "^2.9.10"
pydantic = "^2.12.5"
pydantic-settings = "^2.11.0"
python-dotenv = "^1.2.1"
sentry-sdk = "^2.57.0"
sqlalchemy = "^2.0.49"
urllib3 = "^2.5.0"
uvicorn = "^0.44.0"
[tool.poetry.group.dev.dependencies]
black = "^26.3.1"
pytest = "^8.4.2"
pytest-asyncio = "^1.3.0"
pytest-cov = "^7.0.0"
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"