-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
53 lines (49 loc) · 1.44 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
[project]
name = "django-admin-extra-buttons"
version = "1.6.0"
description = "Django mixin to easily add buttons to any ModelAdmin"
readme = "README.md"
requires-python = ">=3.11"
classifiers=[
'Environment :: Web Environment',
'Operating System :: OS Independent',
'Framework :: Django',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Framework :: Django :: 5.1',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers'
]
dependencies = [
]
[project.urls]
Homepage = "https://github.com/saxix/django-admin-extra-buttons"
Documentation = "https://github.com/saxix/django-admin-extra-buttons"
[project.optional-dependencies]
docs = [
"mkdocs>=1.6.1",
"markdown-include",
"mkdocs-material>=9.5.36",
"mkdocs-awesome-pages-plugin>=2.9.3",
"mkdocstrings-python",
"mdx-gh-links>=0.4",
]
[tool.uv]
dev-dependencies = [
"factory-boy>=3.3.1",
"pytest-django>=4.9.0",
"django-webtest>=1.9.12",
"pyquery>=2.0.1",
"pytest-cov>=5.0.0",
"pytest>=8.3.3",
"tox>=4.20.0",
"isort>=5.13.2",
"flake8>=7.1.1",
"black>=24.10.0",
"pdbpp>=0.10.3",
"toml>=0.10.2",
]