46 lines
862 B
TOML
46 lines
862 B
TOML
[project]
|
|||
|
|
name = "clubber"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Member management system for non-profit societies with GraphQL API"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
authors = [
|
||
|
|
{ name = "Clubber Team" }
|
||
|
|
]
|
||
|
|
license = { text = "MIT" }
|
||
|
|
dependencies = [
|
||
|
|
"aiosqlite>=0.21.0",
|
||
|
|
"alembic>=1.17.2",
|
||
|
|
"fastapi>=0.121.3",
|
||
|
|
"pydantic-settings>=2.12.0",
|
||
|
|
"sqlalchemy[asyncio]>=2.0.44",
|
||
|
|
"strawberry-graphql[fastapi]>=0.286.0",
|
||
|
|
"uvicorn[standard]>=0.38.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[dependency-groups]
|
||
|
|
dev = [
|
||
|
|
"black>=25.11.0",
|
||
|
|
"isort>=7.0.0",
|
||
|
|
"pytest>=9.0.1",
|
||
|
|
"pytest-asyncio>=1.3.0",
|
||
|
|
"ruff>=0.14.5",
|
||
|
|
]
|
||
|
|
|
||
|
|
[tool.black]
|
||
|
|
line-length = 88
|
||
|
|
target-version = ["py311"]
|
||
|
|
|
||
|
|
[tool.ruff]
|
||
|
|
line-length = 88
|
||
|
|
|
||
|
|
[tool.ruff.lint]
|
||
|
|
select = ["E", "F", "W", "I"]
|
||
|
|
ignore = ["E501"]
|
||
|
|
|
||
|
|
[tool.isort]
|
||
|
|
profile = "black"
|
||
|
|
multi_line_output = 3
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
asyncio_mode = "auto"
|