forked from SpokaneTech/SpokaneTech_Py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (65 loc) · 1.67 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "SpokaneTech"
version = "0.1.0"
description = "Home of SpokaneTech.org, an online hub for Spokane's tech events and groups."
maintainers = [
{ name = "Organizers", email = "organizers@spokanetech.org"}
]
requires-python = ">=3.12"
dependencies = [
"asgiref>=3.7.2",
"beautifulsoup4>=4.12.3",
"celery[redis]>=5.3.6",
"crispy-bootstrap5>=2024.2",
"discord.py>=2.3.2",
"Django>=5.0.1",
"django-allauth[socialaccount]>=64.2.0",
"django-azure-communication-email>=1.1.0",
"django-celery-beat>=2.6.0",
"django-celery-results>=2.5.1",
"django-crispy-forms>=2.1",
"django-environ>=0.11.2",
"django-handyhelpers>=0.3.22",
"django-markdownify>=0.9.3",
"django-storages[azure]>=1.14.2",
"dj-database-url>=2.1.0",
"eventbrite>=3.3.5",
"flower>=2.0",
"gunicorn>=21.2.0",
"lxml>=5.1.0",
"psycopg[binary]>=3.1.17",
"python-dotenv>=1.0.1",
"sentry-sdk[celery,django]>=2.1.1",
"sqlparse>=0.4.4",
"pillow>=10.4.0",
]
[project.optional-dependencies]
dev = [
"django-debug-toolbar>=4.3",
"django-environ>=0.11.2",
"freezegun>=1.4",
"mkdocs>=1.6",
"mkdocs-material[imaging]>=9.5",
"model-bakery>=1.17",
"pytest>=8.0",
"pytest-django>=4.8",
"responses>=0.25",
"ruff>=0.6",
"uv>=0.4",
"bandit>=1.7",
]
[tool.bandit]
exclude_dirs = [".venv", "venv", "tests"]
[tool.ruff]
line-length = 120
exclude = ["src/*/migrations", "src/manage.py"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "spokanetech.settings"
addopts = "-vv --reuse-db"
markers = [
"integration",
"eventbrite",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"