2019-11-07 22:53:30 +08:00
|
|
|
[metadata]
|
|
|
|
name = Django
|
|
|
|
version = attr: django.__version__
|
|
|
|
url = https://www.djangoproject.com/
|
|
|
|
author = Django Software Foundation
|
|
|
|
author_email = foundation@djangoproject.com
|
2021-07-23 14:48:16 +08:00
|
|
|
description = A high-level Python web framework that encourages rapid development and clean, pragmatic design.
|
2019-11-07 22:53:30 +08:00
|
|
|
long_description = file: README.rst
|
|
|
|
license = BSD-3-Clause
|
|
|
|
classifiers =
|
|
|
|
Development Status :: 2 - Pre-Alpha
|
|
|
|
Environment :: Web Environment
|
|
|
|
Framework :: Django
|
|
|
|
Intended Audience :: Developers
|
|
|
|
License :: OSI Approved :: BSD License
|
|
|
|
Operating System :: OS Independent
|
|
|
|
Programming Language :: Python
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3 :: Only
|
|
|
|
Programming Language :: Python :: 3.8
|
2020-10-13 14:35:01 +08:00
|
|
|
Programming Language :: Python :: 3.9
|
2021-10-05 15:59:10 +08:00
|
|
|
Programming Language :: Python :: 3.10
|
2019-11-07 22:53:30 +08:00
|
|
|
Topic :: Internet :: WWW/HTTP
|
|
|
|
Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
|
|
Topic :: Internet :: WWW/HTTP :: WSGI
|
|
|
|
Topic :: Software Development :: Libraries :: Application Frameworks
|
|
|
|
Topic :: Software Development :: Libraries :: Python Modules
|
|
|
|
project_urls =
|
|
|
|
Documentation = https://docs.djangoproject.com/
|
2020-05-06 18:50:45 +08:00
|
|
|
Release notes = https://docs.djangoproject.com/en/stable/releases/
|
2019-11-07 22:53:30 +08:00
|
|
|
Funding = https://www.djangoproject.com/fundraising/
|
|
|
|
Source = https://github.com/django/django
|
|
|
|
Tracker = https://code.djangoproject.com/
|
|
|
|
|
|
|
|
[options]
|
2021-01-19 15:35:16 +08:00
|
|
|
python_requires = >=3.8
|
2019-11-07 22:53:30 +08:00
|
|
|
packages = find:
|
|
|
|
include_package_data = true
|
|
|
|
zip_safe = false
|
|
|
|
install_requires =
|
2022-06-16 17:37:17 +08:00
|
|
|
asgiref >= 3.5.2
|
2021-09-09 21:15:44 +08:00
|
|
|
backports.zoneinfo; python_version<"3.9"
|
2019-11-07 22:53:30 +08:00
|
|
|
sqlparse >= 0.2.2
|
2021-09-09 21:15:44 +08:00
|
|
|
tzdata; sys_platform == 'win32'
|
2019-11-07 22:53:30 +08:00
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
|
|
django-admin = django.core.management:execute_from_command_line
|
|
|
|
|
|
|
|
[options.extras_require]
|
2020-06-17 13:46:45 +08:00
|
|
|
argon2 = argon2-cffi >= 19.1.0
|
2019-11-07 22:53:30 +08:00
|
|
|
bcrypt = bcrypt
|
|
|
|
|
2006-09-01 06:01:47 +08:00
|
|
|
[bdist_rpm]
|
2012-08-30 03:25:02 +08:00
|
|
|
doc_files = docs extras AUTHORS INSTALL LICENSE README.rst
|
2021-06-22 18:51:04 +08:00
|
|
|
install_script = scripts/rpm-install.sh
|
2006-09-01 06:01:47 +08:00
|
|
|
|
2013-10-15 01:43:40 +08:00
|
|
|
[flake8]
|
2019-12-12 15:50:42 +08:00
|
|
|
exclude = build,.git,.tox,./tests/.env
|
2022-02-02 18:36:57 +08:00
|
|
|
extend-ignore = E203
|
|
|
|
max-line-length = 88
|
|
|
|
per-file-ignores =
|
|
|
|
django/core/cache/backends/filebased.py:W601
|
|
|
|
django/core/cache/backends/base.py:W601
|
|
|
|
django/core/cache/backends/redis.py:W601
|
|
|
|
tests/cache/tests.py:W601
|
2013-10-15 01:43:40 +08:00
|
|
|
|
2015-01-28 20:35:27 +08:00
|
|
|
[isort]
|
2022-02-02 18:36:57 +08:00
|
|
|
profile = black
|
2015-01-28 20:35:27 +08:00
|
|
|
default_section = THIRDPARTY
|
|
|
|
known_first_party = django
|