|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.2"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "django-adminplus" |
| 7 | +version = "0.6" |
| 8 | +authors = [{name = "James Socol", email = "me@jamessocol.com"}] |
| 9 | +requires-python = ">= 3.7" |
| 10 | +license = {file = "LICENSE"} |
| 11 | +description = "Add new pages to the Django admin." |
| 12 | +readme = "README.rst" |
| 13 | +classifiers = [ |
| 14 | + "Development Status :: 4 - Beta", |
| 15 | + "Environment :: Web Environment", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "License :: OSI Approved :: BSD License", |
| 18 | + "Operating System :: OS Independent", |
| 19 | + "Programming Language :: Python", |
| 20 | + "Programming Language :: Python :: 3", |
| 21 | + "Programming Language :: Python :: 3.7", |
| 22 | + "Programming Language :: Python :: 3.8", |
| 23 | + "Programming Language :: Python :: 3.9", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Programming Language :: Python :: 3.11", |
| 26 | + "Framework :: Django", |
| 27 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 28 | +] |
| 29 | +urls = {Homepage = "https://github.com/jsocol/django-adminplus"} |
| 30 | + |
| 31 | +[tool.distutils.bdist_wheel] |
| 32 | +universal = 1 |
| 33 | + |
| 34 | +[tool.setuptools] |
| 35 | +include-package-data = true |
| 36 | + |
| 37 | +[tool.setuptools.packages] |
| 38 | +find = {namespaces = false} |
0 commit comments