-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (66 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
77 lines (66 loc) · 1.92 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
[project]
name = "django-admin-runner"
version = "0.1.0"
description = "Run Django management commands from the admin with auto-generated forms and pluggable task runners"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
dependencies = ["django>=6.0"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Framework :: Django",
"Framework :: Django :: 6.0",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
[project.optional-dependencies]
celery = ["celery>=5.3"]
django-q2 = ["django-q2>=1.5"]
unfold = ["django-unfold>=0.40"]
rich = ["rich>=13.0"]
[project.urls]
Homepage = "https://github.com/burgdev/django-admin-runner"
Documentation = "https://burgdev.github.io/django-admin-runner"
Repository = "https://github.com/burgdev/django-admin-runner"
Issues = "https://github.com/burgdev/django-admin-runner/issues"
Changelog = "https://github.com/burgdev/django-admin-runner/blob/main/CHANGELOG.md"
[dependency-groups]
dev = [
"bump2version>=1.0.1",
"git-cliff>=2.7.0",
"pre-commit>=4.0.1",
"pyright>=1.1.0",
"ruff>=0.8.2",
]
docs = [
"zensical>=0.0.32",
"mkdocs-open-in-new-tab>=1.0.8",
"mkdocs-literate-nav>=0.6.1",
"mkdocs-section-index>=0.3.9",
"mkdocstrings[python]>=0.22.0",
]
test = [
"pytest>=8.3.4",
"pytest-django>=4.10.0",
"pytest-cov>=4.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/django_admin_runner"]
[tool.hatch.build.targets.sdist]
include = ["src/django_admin_runner"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
pythonpath = ["src", "."]
[tool.ruff]
src = ["src"]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]