-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 868 Bytes
/
pyproject.toml
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
[project]
name = "fbsurvivor"
version = "3.0"
description = "Run an NFL Survivor Pool"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"arrow>=1.3.0",
"django>=5.1.1",
"django-extensions>=3.2.3",
"django-htmlmin>=0.11.0",
"pyjwt>=2.9.0",
"python-decouple>=3.8",
"requests>=2.32.3",
"gunicorn>=23.0.0",
"sentry-sdk[django]>=2.14.0",
"psycopg[c]>=3.2.1",
]
[tool.uv]
dev-dependencies = [
"django-debug-toolbar>=4.4.6",
"factory-boy>=3.3.1",
"ipython>=8.27.0",
"pytest>=8.3.3",
"pytest-django>=4.9.0",
]
[tool.ruff]
line-length = 99
target-version = "py313"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
exclude = [
".git",
".pytest_cache",
".ruff_cache",
"venv",
".venv",
]
[tool.ruff.lint]
select = ["C", "E", "F", "W"]