-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (73 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
78 lines (73 loc) · 1.52 KB
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
71
72
73
74
75
76
77
78
[project]
name = "grorg"
version = "2026.5.1"
description = "DjangoCon US Grant Organization"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"blessed",
"bumpver",
"django-allauth",
"django-health-check",
"django-q2",
"django-tailwind-cli",
"django<6.0",
"django-prodserver[gunicorn]",
"environs[django]",
"psycopg[binary]",
"model-bakery",
"pytest",
"pytest-django",
"requests",
"urlman",
"whitenoise",
]
[tool.bumpver]
commit = true
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
current_version = "2026.5.1"
push = false
tag = true
version_pattern = "YYYY.MM.INC1"
[tool.bumpver.file_patterns]
"config/__init__.py" = [
'__version__ = "{version}"'
]
"pyproject.toml" = [
'version = "{version}"'
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings"
addopts = "--nomigrations --reuse-db"
norecursedirs = ".git* .venv staticfiles templates static"
python_files = ["test_*.py", "tests.py"]
[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".github",
".hg",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"build",
"dist",
"migrations",
"node_modules",
"static",
]
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
fixable = ["A", "B", "C", "D", "E", "F"]
ignore = ["E501", "E741"]
line-length = 120
per-file-ignores = {}
select = ["E", "F"]
target-version = "py311"
unfixable = []
[tool.uv]
package = false