setup.cfg 2.1 KB

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