24 lines
428 B
TOML
24 lines
428 B
TOML
[project]
|
|
name = "ww-db"
|
|
version = "0.0.0"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"sqlalchemy[asyncio]>=2.0",
|
|
"asyncpg>=0.31",
|
|
"psycopg[binary]>=3.2",
|
|
"alembic>=1.18",
|
|
"ww-shared",
|
|
"ww-config",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["ww_db"]
|
|
|
|
[tool.uv.sources]
|
|
ww-shared = { workspace = true }
|
|
ww-config = { workspace = true }
|