-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1005 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
47
48
49
50
51
52
53
54
[project]
name = "website"
version = "4.6.7"
description = "Stryke Force Website"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"django[argon2]>=5.1.4",
"gunicorn>=23.0.0",
"hiredis>=3.1.0",
"opencv-python>=4.10.0.84",
"psycopg[c,pool]>=3.2.3",
"redis>=5.2.1",
"sentry-sdk>=2.19.2",
"tba-api-v3client>=3.8.0",
"wagtail>=6.4",
"whitenoise[brotli]>=6.8.2",
]
[project.scripts]
strykeforce-manage = "website.manage:main"
[dependency-groups]
dev = [
"black>=24.10.0",
"django-debug-toolbar>=4.4.6",
"django-types>=0.20.0",
"ipython>=8.31.0",
"rich>=13.9.4",
]
pre-commit = [
"add-trailing-comma>=3.1.0",
"djade>=1.3.2",
"django-upgrade>=1.23.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 99
[tool.isort]
profile = "black"
[tool.djlint]
profile = "django"
max_blank_lines = 1
indent = 2
[tool.pyright]
pythonVersion = "3.12"
typeCheckingMode = "basic"