-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 1.1 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
[project]
name = "showbility-server"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aioboto3>=14.1.0",
"alembic>=1.15.1",
"asyncpg>=0.30.0",
"bcrypt>=4.3.0",
"fastapi[standard]>=0.115.11",
"greenlet>=3.1.1",
"httpx>=0.28.1",
"newrelic>=11.0.1",
"passlib>=1.7.4",
"psycopg[binary,pool]>=3.2.6",
"pydantic-settings>=2.8.1",
"pyjwt[crypto]>=2.10.1",
"python-ulid>=3.1.0",
"sqlalchemy[asyncio]>=2.0.39",
"types-aioboto3[full]>=14.1.0",
]
[dependency-groups]
dev = [
"alembic>=1.15.1",
"poethepoet>=0.33.1",
"pre-commit>=4.2.0",
"pyright>=1.1.397",
"ruff>=0.11.2",
]
[tool.poe.tasks]
setup = "pre-commit install"
dev = "fastapi dev app/main.py --host=0.0.0.0"
prod = "fastapi run app/main.py --host=0.0.0.0"
typecheck = "pyright"
lint = "ruff check"
format = "ruff format"
db = "docker compose -f docker-compose.dev.yml"
revision = "alembic revision --autogenerate"
migrate = "alembic upgrade head"
downgrade = "alembic downgrade -1"
check-migrations = "alembic check"