setup.cfg 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 :: 5 - Production/Stable
  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.10
  21. Programming Language :: Python :: 3.11
  22. Programming Language :: Python :: 3.12
  23. Topic :: Internet :: WWW/HTTP
  24. Topic :: Internet :: WWW/HTTP :: Dynamic Content
  25. Topic :: Internet :: WWW/HTTP :: WSGI
  26. Topic :: Software Development :: Libraries :: Application Frameworks
  27. Topic :: Software Development :: Libraries :: Python Modules
  28. project_urls =
  29. Documentation = https://docs.djangoproject.com/
  30. Release notes = https://docs.djangoproject.com/en/stable/releases/
  31. Funding = https://www.djangoproject.com/fundraising/
  32. Source = https://github.com/django/django
  33. Tracker = https://code.djangoproject.com/
  34. [options]
  35. python_requires = >=3.10
  36. packages = find:
  37. include_package_data = true
  38. zip_safe = false
  39. install_requires =
  40. asgiref >= 3.7.0, < 4
  41. sqlparse >= 0.3.1
  42. tzdata; sys_platform == 'win32'
  43. [options.entry_points]
  44. console_scripts =
  45. django-admin = django.core.management:execute_from_command_line
  46. [options.extras_require]
  47. argon2 = argon2-cffi >= 19.1.0
  48. bcrypt = bcrypt
  49. [bdist_rpm]
  50. doc_files = docs extras AUTHORS INSTALL LICENSE README.rst
  51. install_script = scripts/rpm-install.sh
  52. [flake8]
  53. exclude = build,.git,.tox,./tests/.env
  54. extend-ignore = E203
  55. max-line-length = 88
  56. per-file-ignores =
  57. django/core/cache/backends/filebased.py:W601
  58. django/core/cache/backends/base.py:W601
  59. django/core/cache/backends/redis.py:W601
  60. tests/cache/tests.py:W601
  61. [isort]
  62. profile = black
  63. default_section = THIRDPARTY
  64. known_first_party = django