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 =
|
2024-05-22 23:26:58 +08:00
|
|
|
Development Status :: 3 - Alpha
|
2019-11-07 22:53:30 +08:00
|
|
|
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
|
2021-10-05 15:59:10 +08:00
|
|
|
Programming Language :: Python :: 3.10
|
2022-10-26 16:25:07 +08:00
|
|
|
Programming Language :: Python :: 3.11
|
2023-11-18 22:50:55 +08:00
|
|
|
Programming Language :: Python :: 3.12
|
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]
|
2023-01-18 16:46:01 +08:00
|
|
|
python_requires = >=3.10
|
2019-11-07 22:53:30 +08:00
|
|
|
packages = find:
|
|
|
|
include_package_data = true
|
|
|
|
zip_safe = false
|
|
|
|
install_requires =
|
2023-06-24 03:52:04 +08:00
|
|
|
asgiref >= 3.7.0
|
2023-03-13 19:06:30 +08:00
|
|
|
sqlparse >= 0.3.1
|
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
|
|
|
|
|
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
|