-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
49 lines (44 loc) · 1.35 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools.package-data]
admin_wizard = ["**/*.html"]
[project]
name = "django-admin-wizard"
dynamic = ["version"]
description = "Django Admin dialogs and actions with intermediate forms"
readme = "README.md"
authors = [
{ name = "Sergey Tikhonov", email = "zimbler@gmail.com" },
]
dependencies = [
"Django>=3.2,<5.1",
]
license = { text = "MIT" }
keywords = [
"django",
"admin",
"wizard",
"actions",
]
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System',
]
[project.urls]
homepage = "https://github.com/just-work/django-admin-wizard"