-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (88 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
93 lines (88 loc) · 2.27 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs>=0.4",
"hatchling>=1.25",
]
[project]
name = "django-admin-extra-buttons"
description = "Django mixin to easily add buttons to any ModelAdmin"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = [
"version",
]
dependencies = [
"django-stubs",
]
urls.Documentation = "https://saxix.github.io/django-admin-extra-buttons/"
urls.Homepage = "https://github.com/saxix/django-admin-extra-buttons"
[dependency-groups]
dev = [
"covdefaults>=2.3",
"django-stubs",
"django-webtest>=1.9.13",
"factory-boy>=3.3.1",
"pdbpp>=0.10.3",
"pre-commit>=4.2",
"pyquery>=2.0.1",
"pytest>=8.3.3",
"pytest-cov>=5",
"pytest-django>=4.9",
"pytest-echo>=1.8.1",
"ruff>=0.9.9",
"toml>=0.10.2",
"tox>=4.20",
]
docs = [
"markdown-include>=0.8.1",
"mdx-gh-links>=0.4",
"mkdocs>=1.6.1",
"mkdocs-autolinks-plugin>=0.7.1",
"mkdocs-autorefs>=1.3.1",
"mkdocs-awesome-pages-plugin>=2.10.1",
"mkdocs-ezlinks-plugin>=0.1.14",
"mkdocs-glightbox>=0.4",
"mkdocs-include-markdown-plugin>=6.2.2",
"mkdocs-macros-plugin>=1.3.7",
"mkdocs-markdownextradata-plugin>=0.2.6",
"mkdocs-material>=9.6.5",
"mkdocs-material-extensions>=1.3.1",
"mkdocstrings>=0.28.1",
"mkdocstrings-python>=1.16.1",
]
dj = [
"django",
]
type-check = [
"mypy",
]
[tool.hatch]
build.hooks.vcs.version-file = "src/admin_extra_buttons/version.py"
build.targets.sdist.ignore-vcs = true
build.targets.sdist.include = [
"src/admin_extra_buttons/**/*.*",
]
build.targets.wheel.packages = [ "src/admin_extra_buttons" ]
version.source = "vcs"
raw-options = { root = "../.." }
[tool.uv]
required-version = ">=0.7.2"
package = true
[tool.pyproject-fmt]
max_supported_python = "3.13"