setup.cfg 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. [metadata]
  2. name = Django
  3. version = attr: django.__version__
  4. url = https://www.djangoproject.com/
  5. author = Django Software Foundation
  6. author_email = foundation@djangoproject.com
  7. description = A high-level Python web framework that encourages rapid development and clean, pragmatic design.
  8. long_description = file: README.rst
  9. license = BSD-3-Clause
  10. classifiers =
  11. Development Status :: 2 - Pre-Alpha
  12. Environment :: Web Environment
  13. Framework :: Django
  14. Intended Audience :: Developers
  15. License :: OSI Approved :: BSD License
  16. Operating System :: OS Independent
  17. Programming Language :: Python
  18. Programming Language :: Python :: 3
  19. Programming Language :: Python :: 3 :: Only
  20. Programming Language :: Python :: 3.8
  21. Programming Language :: Python :: 3.9
  22. Programming Language :: Python :: 3.10
  23. Programming Language :: Python :: 3.11
  24. Topic :: Internet :: WWW/HTTP
  25. Topic :: Internet :: WWW/HTTP :: Dynamic Content
  26. Topic :: Internet :: WWW/HTTP :: WSGI
  27. Topic :: Software Development :: Libraries :: Application Frameworks
  28. Topic :: Software Development :: Libraries :: Python Modules
  29. project_urls =
  30. Documentation = https://docs.djangoproject.com/
  31. Release notes = https://docs.djangoproject.com/en/stable/releases/
  32. Funding = https://www.djangoproject.com/fundraising/
  33. Source = https://github.com/django/django
  34. Tracker = https://code.djangoproject.com/
  35. [options]
  36. python_requires = >=3.8
  37. packages = find:
  38. include_package_data = true
  39. zip_safe = false
  40. install_requires =
  41. asgiref >= 3.6.0
  42. backports.zoneinfo; python_version<"3.9"
  43. sqlparse >= 0.2.2
  44. tzdata; sys_platform == 'win32'
  45. [options.entry_points]
  46. console_scripts =
  47. django-admin = django.core.management:execute_from_command_line
  48. [options.extras_require]
  49. argon2 = argon2-cffi >= 19.1.0
  50. bcrypt = bcrypt
  51. [bdist_rpm]
  52. doc_files = docs extras AUTHORS INSTALL LICENSE README.rst
  53. install_script = scripts/rpm-install.sh
  54. [flake8]
  55. exclude = build,.git,.tox,./tests/.env
  56. extend-ignore = E203
  57. max-line-length = 88
  58. per-file-ignores =
  59. django/core/cache/backends/filebased.py:W601
  60. django/core/cache/backends/base.py:W601
  61. django/core/cache/backends/redis.py:W601
  62. tests/cache/tests.py:W601
  63. [isort]
  64. profile = black
  65. default_section = THIRDPARTY
  66. known_first_party = django