-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (37 loc) · 923 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
[project]
name = "Blaze.horse"
version = "0.1.0"
requires-python = ">=3.13"
dependencies = [
"black>=24.10.0",
"coverage>=7.6.10",
"dj-database-url>=2.3.0",
"django>=5.1.4",
"django-browser-reload>=1.17.0",
"django-debug-toolbar>=4.4.6",
"django-extensions>=3.2.3",
"django-honeypot>=1.2.1",
"django-htmx>=1.21.0",
"django-registration>=5.1.0",
"djlint>=1.36.4",
"environs[django]>=11.2.1",
"flake8>=7.1.1",
"gunicorn>=23.0.0",
"ipython>=8.31.0",
"pre-commit>=4.0.1",
"pytest-django>=4.9.0",
"pytz>=2024.2",
"whitenoise>=6.8.2",
]
[tool.black]
target-version = ['py311']
include = '\.py-tpl$'
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings"
python_files = ["test_*.py", "*_test.py", "testing/python/*.py"]
[tool.djlint]
# H017: Void tags should be self closing.
# H031: Consider adding meta keywords.
ignore = "H017,H031"
preserve_blank_lines = true
indent = 2