51 lines
1.7 KiB
TOML
51 lines
1.7 KiB
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=61.0", "wheel"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "django-enhanced-apidocs"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Enhanced API documentation for Django REST Framework with drf-spectacular"
|
||
|
|
readme = "README.md"
|
||
|
|
authors = [
|
||
|
|
{name = "KBS GmbH", email = "holger.sielaff@kbs-gmbh.de"}
|
||
|
|
]
|
||
|
|
license = {text = "MIT"}
|
||
|
|
classifiers = [
|
||
|
|
"Development Status :: 3 - Alpha",
|
||
|
|
"Environment :: Web Environment",
|
||
|
|
"Framework :: Django",
|
||
|
|
"Framework :: Django :: 4.0",
|
||
|
|
"Framework :: Django :: 5.0",
|
||
|
|
"Intended Audience :: Developers",
|
||
|
|
"License :: OSI Approved :: MIT License",
|
||
|
|
"Operating System :: OS Independent",
|
||
|
|
"Programming Language :: Python",
|
||
|
|
"Programming Language :: Python :: 3",
|
||
|
|
"Programming Language :: Python :: 3.9",
|
||
|
|
"Programming Language :: Python :: 3.10",
|
||
|
|
"Programming Language :: Python :: 3.11",
|
||
|
|
"Programming Language :: Python :: 3.12",
|
||
|
|
"Topic :: Internet :: WWW/HTTP",
|
||
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||
|
|
]
|
||
|
|
keywords = ["django", "rest", "api", "documentation", "swagger", "openapi", "spectacular"]
|
||
|
|
requires-python = ">=3.9"
|
||
|
|
dependencies = [
|
||
|
|
"Django>=4.0",
|
||
|
|
"djangorestframework>=3.14",
|
||
|
|
"drf-spectacular>=0.26",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.urls]
|
||
|
|
Homepage = "https://github.com/yourusername/django-enhanced-apidocs"
|
||
|
|
Documentation = "https://github.com/yourusername/django-enhanced-apidocs#readme"
|
||
|
|
Repository = "https://github.com/yourusername/django-enhanced-apidocs"
|
||
|
|
Issues = "https://github.com/yourusername/django-enhanced-apidocs/issues"
|
||
|
|
|
||
|
|
[tool.setuptools]
|
||
|
|
packages = ["django_enhanced_apidocs"]
|
||
|
|
|
||
|
|
[tool.setuptools.package-data]
|
||
|
|
django_enhanced_apidocs = ["*.py"]
|