2023-07-27 16:56:07 +03:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=61.2"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "djangorestframework"
|
2023-10-06 12:43:37 +03:00
|
|
|
readme = "README.md"
|
2023-07-27 16:56:07 +03:00
|
|
|
authors = [{name = "Tom Christie", email = "tom@tomchristie.com"}]
|
|
|
|
license = {text = "BSD"}
|
|
|
|
description = "Web APIs for Django, made easy."
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"Framework :: Django",
|
|
|
|
"Framework :: Django :: 3.0",
|
|
|
|
"Framework :: Django :: 3.1",
|
|
|
|
"Framework :: Django :: 3.2",
|
|
|
|
"Framework :: Django :: 4.0",
|
|
|
|
"Framework :: Django :: 4.1",
|
|
|
|
"Framework :: Django :: 4.2",
|
2024-03-20 19:15:43 +03:00
|
|
|
"Framework :: Django :: 5.0",
|
2023-07-27 16:56:07 +03:00
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: BSD License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"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",
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
|
|
]
|
2024-02-28 11:48:20 +03:00
|
|
|
requires-python = ">=3.6"
|
2023-07-27 16:56:07 +03:00
|
|
|
dependencies = [
|
|
|
|
"django>=3.0",
|
|
|
|
'backports.zoneinfo;python_version<"3.9"',
|
|
|
|
]
|
2023-10-06 12:41:44 +03:00
|
|
|
dynamic = ["version"]
|
|
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
|
|
version = {attr = "rest_framework.__version__"}
|
2023-07-27 16:56:07 +03:00
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://www.django-rest-framework.org/"
|
|
|
|
Funding = "https://fund.django-rest-framework.org/topics/funding/"
|
|
|
|
Source = "https://github.com/encode/django-rest-framework"
|
|
|
|
Changelog = "https://www.django-rest-framework.org/community/release-notes/"
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
namespaces = false
|