2
0

setup.cfg 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. 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.8
  35. packages = find:
  36. include_package_data = true
  37. zip_safe = false
  38. install_requires =
  39. asgiref >= 3.3.2
  40. backports.zoneinfo; python_version<"3.9"
  41. sqlparse >= 0.2.2
  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. ignore = W504,W601
  55. max-line-length = 119
  56. [isort]
  57. combine_as_imports = true
  58. default_section = THIRDPARTY
  59. include_trailing_comma = true
  60. known_first_party = django
  61. line_length = 79
  62. multi_line_output = 5