-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 801 Bytes
/
pyproject.toml
File metadata and controls
31 lines (29 loc) · 801 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
[project]
name = "fastpubsub"
version = "0.1.0"
description = "Simple pubsub system based on FastAPI and PostgreSQL"
readme = "README.md"
requires-python = ">=3.14,<3.15"
dependencies = [
"alembic>=1.17.2,<2",
"fastapi[standard]>=0.127.1,<1",
"gunicorn>=23.0.0,<24",
"orjson>=3.11.5,<4",
"prometheus-fastapi-instrumentator>=7.1.0,<8",
"psycopg[binary]>=3.3.2,<4",
"pwdlib[argon2]>=0.3.0,<1",
"python-jose[cryptography]>=3.5.0,<4",
"python-json-logger>=4.0.0,<5",
"sqlalchemy[asyncio]>=2.0.45,<3",
"typer>=0.21.0,<1",
]
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"pytest-asyncio>=0.25.2",
"pytest-cov>=7.0.0",
]
[tool.pytest.ini_options]
minversion = "9.0"
addopts = "-vvv --cov=fastpubsub --cov-report=term-missing"