-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
70 lines (64 loc) · 1.58 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "league-manager"
version = "0.1.0"
requires-python = ">=3.14"
dependencies = [
"fastapi==0.135.1",
"uvicorn==0.41.0",
"ujson==5.12.0",
"pydantic==2.12.5",
"python-multipart==0.0.22",
"pyjwt==2.12.0",
"bcrypt==5.0.0",
"email-validator==2.3.0",
"starlette==0.52.1",
"rethinkdb==2.4.10.post1",
"python-dotenv>=1.2.2",
"websockets>=12.0,<16.0",
"pwdlib>=0.3.0",
"httpx>=0.26.0,<0.28.0",
"structlog>=24.0.0",
"supabase>=2.0.0",
"sqlalchemy[asyncio]>=2.0.0",
"alembic>=1.15.0",
"asyncpg>=0.30.0",
]
[dependency-groups]
dev = [
"ipdb==0.13.13",
"ruff>=0.8.0",
"pytest==9.0.2",
"pytest-asyncio>=0.25.0",
"aiosqlite>=0.20.0",
"requests==2.33.0",
"pytest-cov==7.0.0",
]
[tool.uv]
package = false
default-groups = "all"
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple"
[tool.ruff]
target-version = "py314"
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long (handled by formatter)
"B008", # FastAPI Depends() in function defaults is fine
"B904", # except raise is fine for auth errors
"F401", # unused imports in __init__.py are ok
"F821", # undefined name (forward references in relationships)
"UP037", # quotes around type annotations (needed for forward refs)
]
[tool.ruff.lint.isort]
known-first-party = ["src"]