|
| 1 | +[project] |
| 2 | +name = "drf-spectacular" |
| 3 | +dynamic = ["version"] |
| 4 | +description = "Sane and flexible OpenAPI 3 schema generation for Django REST framework" |
| 5 | +readme = "README.rst" |
| 6 | +requires-python = ">=3.7" |
| 7 | +license = "BSD-3-Clause" |
| 8 | +authors = [ |
| 9 | + {name = "T. Franzel", email = "tfranzel@gmail.com"} |
| 10 | +] |
| 11 | +keywords = ["django", "rest", "openapi", "schema", "api", "swagger"] |
| 12 | +classifiers = [ |
| 13 | + "Development Status :: 5 - Production/Stable", |
| 14 | + "Environment :: Web Environment", |
| 15 | + "Framework :: Django", |
| 16 | + "Framework :: Django :: 2.2", |
| 17 | + "Framework :: Django :: 3.2", |
| 18 | + "Framework :: Django :: 4.0", |
| 19 | + "Framework :: Django :: 4.1", |
| 20 | + "Framework :: Django :: 4.2", |
| 21 | + "Framework :: Django :: 5.0", |
| 22 | + "Framework :: Django :: 5.1", |
| 23 | + "Framework :: Django :: 5.2", |
| 24 | + "Intended Audience :: Developers", |
| 25 | + "Operating System :: OS Independent", |
| 26 | + "Natural Language :: English", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.6", |
| 29 | + "Programming Language :: Python :: 3.7", |
| 30 | + "Programming Language :: Python :: 3.8", |
| 31 | + "Programming Language :: Python :: 3.9", |
| 32 | + "Programming Language :: Python :: 3.10", |
| 33 | + "Programming Language :: Python :: 3.11", |
| 34 | + "Programming Language :: Python :: 3.12", |
| 35 | + "Programming Language :: Python :: 3.13", |
| 36 | + "Programming Language :: Python :: 3.14", |
| 37 | + "Topic :: Internet :: WWW/HTTP", |
| 38 | + "Topic :: Documentation", |
| 39 | + "Topic :: Software Development :: Code Generators", |
| 40 | +] |
| 41 | +dependencies = [ |
| 42 | + "Django>=2.2", |
| 43 | + "djangorestframework>=3.10.3", |
| 44 | + "uritemplate>=2.0.0", |
| 45 | + "PyYAML>=5.1", |
| 46 | + "jsonschema>=2.6.0", |
| 47 | + "inflection>=0.3.1", |
| 48 | + "typing-extensions; python_version < '3.10'", |
| 49 | +] |
| 50 | + |
| 51 | +[project.optional-dependencies] |
| 52 | +offline = ["drf-spectacular-sidecar"] |
| 53 | +sidecar = ["drf-spectacular-sidecar"] |
| 54 | + |
| 55 | +[project.urls] |
| 56 | +Homepage = "https://github.com/tfranzel/drf-spectacular" |
| 57 | +Source = "https://github.com/tfranzel/drf-spectacular" |
| 58 | +Documentation = "https://drf-spectacular.readthedocs.io" |
| 59 | + |
| 60 | +[tool.setuptools.dynamic] |
| 61 | +version = {attr = "drf_spectacular.__version__"} |
| 62 | + |
| 63 | +[tool.setuptools.packages.find] |
| 64 | +include = ["drf_spectacular*"] |
| 65 | + |
| 66 | +[tool.setuptools.package-data] |
| 67 | +drf_spectacular = [ |
| 68 | + "py.typed", |
| 69 | + "validation/*.json", |
| 70 | + "templates/drf_spectacular/*.html", |
| 71 | + "templates/drf_spectacular/*.js", |
| 72 | +] |
| 73 | + |
| 74 | +[build-system] |
| 75 | +requires = ["setuptools>=61.0", "wheel"] |
| 76 | +build-backend = "setuptools.build_meta" |
0 commit comments