Skip to content

Commit 6344069

Browse files
committed
migrate setup.cfg to setup.py
1 parent 589b5dc commit 6344069

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

setup.cfg

+48
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,53 @@
11
[metadata]
22
license_files = LICENSE.md
3+
name = djangorestframework
4+
version = 3.14.0
5+
author = Tom Christie
6+
author_email = [email protected]
7+
license = BSD
8+
description = Web APIs for Django, made easy.
9+
url = https://www.django-rest-framework.org/
10+
long_description = file: README.md
11+
long_description_content_type = text/markdown
12+
classifiers =
13+
Development Status :: 5 - Production/Stable
14+
Environment :: Web Environment
15+
Framework :: Django
16+
Framework :: Django :: 3.0
17+
Framework :: Django :: 3.1
18+
Framework :: Django :: 3.2
19+
Framework :: Django :: 4.0
20+
Framework :: Django :: 4.1
21+
Framework :: Django :: 4.2
22+
Intended Audience :: Developers
23+
License :: OSI Approved :: BSD License
24+
Operating System :: OS Independent
25+
Programming Language :: Python
26+
Programming Language :: Python :: 3
27+
Programming Language :: Python :: 3.6
28+
Programming Language :: Python :: 3.7
29+
Programming Language :: Python :: 3.8
30+
Programming Language :: Python :: 3.9
31+
Programming Language :: Python :: 3.10
32+
Programming Language :: Python :: 3.11
33+
Programming Language :: Python :: 3 :: Only
34+
Topic :: Internet :: WWW/HTTP
35+
project_urls =
36+
Funding = https://fund.django-rest-framework.org/topics/funding/
37+
Source = https://github.com/encode/django-rest-framework
38+
Changelog = https://www.django-rest-framework.org/community/release-notes/
39+
40+
[options]
41+
packages = find:
42+
zip_safe = False
43+
install_requires =
44+
django>=3.0
45+
backports.zoneinfo;python_version<"3.9"
46+
include_package_data = True
47+
python_requires = >=3.6
48+
49+
[options.packages.find]
50+
exclude = tests*
351

452
[tool:pytest]
553
addopts=--tb=short --strict-markers -ra

0 commit comments

Comments
 (0)