-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (57 loc) · 1.51 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
[project]
name = "django-blasphemy"
version = "0.1.0"
description = ""
authors = [
{ name = "Ülgen Sarıkavak", email = "[email protected]" },
]
requires-python = ">=3.13"
dependencies = [
"celery[redis]==5.4",
"Django==5.2b1",
"django-admin-interface==0.29.4",
"django-click==2.4.1",
"django-debug-toolbar==5.0.1",
"django-dirtyfields==1.9.6",
"django-environ==0.12",
"django-extensions",
"django-filter==25.1",
"django-jsonform==2.23.2",
"django-removals==1.0.5",
"djangorestframework==3.15.2",
"drf-spectacular==0.28",
"flower==2.0.1",
"gitpython==3.1.44",
"gunicorn==23",
# https://docs.djangoproject.com/en/dev/releases/4.2/#psycopg-3-support
"psycopg[binary]==3.2.5",
"rich==13.9.4",
"sentry-sdk==2.22.0",
"uuid7==0.1",
"whitenoise==6.9.0",
]
[dependency-groups]
dev = [
# Debugging
"ipdb==0.13.13",
"ipython==9.0.1",
"wat-inspector==0.4.3",
# Formatters
# Used by Django's find_formatters and run_formatters (with a monkey patch)
"ruff==0.9.9",
"django-upgrade==1.23.1",
# Quality check
"pre-commit==4.1.0",
# Testing
"factory-boy==3.3.3",
"parameterized==0.9",
"tblib==3",
"xkcdpass==1.20.0",
# Visualization
"pydot==3.0.4", # For visualizing Django models with "graph_models --pydot"
]
[tool.uv]
package = false
required-version = ">=0.5.0"
[tool.uv.sources]
django-extensions = { git = "https://github.com/ulgens/django-extensions.git", branch = "aiosmptd-mail_debug" }