METADATA 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. Metadata-Version: 2.1
  2. Name: django-extensions
  3. Version: 3.0.0
  4. Summary: Extensions for Django
  5. Home-page: http://github.com/django-extensions/django-extensions
  6. Author: Michael Trier
  7. Author-email: mtrier@gmail.com
  8. Maintainer: Bas van Oostveen
  9. Maintainer-email: v.oostveen@gmail.com
  10. License: MIT License
  11. Platform: any
  12. Classifier: Development Status :: 5 - Production/Stable
  13. Classifier: Environment :: Web Environment
  14. Classifier: Framework :: Django
  15. Classifier: Framework :: Django :: 1.11
  16. Classifier: Framework :: Django :: 2.1
  17. Classifier: Framework :: Django :: 2.2
  18. Classifier: Framework :: Django :: 3.0
  19. Classifier: Intended Audience :: Developers
  20. Classifier: License :: OSI Approved :: MIT License
  21. Classifier: Operating System :: OS Independent
  22. Classifier: Programming Language :: Python
  23. Classifier: Programming Language :: Python :: 2
  24. Classifier: Programming Language :: Python :: 2.7
  25. Classifier: Programming Language :: Python :: 3
  26. Classifier: Programming Language :: Python :: 3.5
  27. Classifier: Programming Language :: Python :: 3.6
  28. Classifier: Programming Language :: Python :: 3.7
  29. Classifier: Programming Language :: Python :: 3.8
  30. Classifier: Programming Language :: Python :: Implementation :: CPython
  31. Classifier: Programming Language :: Python :: Implementation :: PyPy
  32. Classifier: Topic :: Utilities
  33. Requires-Dist: six (>=1.2)
  34. Requires-Dist: typing ; python_version < "3.5"
  35. ===================
  36. Django Extensions
  37. ===================
  38. .. image:: https://img.shields.io/pypi/l/django-extensions.svg
  39. :target: https://raw.githubusercontent.com/django-extensions/django-extensions/master/LICENSE
  40. .. image:: https://secure.travis-ci.org/django-extensions/django-extensions.svg?branch=master
  41. :alt: Build Status
  42. :target: http://travis-ci.org/django-extensions/django-extensions
  43. .. image:: https://img.shields.io/pypi/v/django-extensions.svg
  44. :target: https://pypi.python.org/pypi/django-extensions/
  45. :alt: Latest PyPI version
  46. .. image:: https://img.shields.io/pypi/wheel/django-extensions.svg
  47. :target: https://pypi.python.org/pypi/django-extensions/
  48. :alt: Supports Wheel format
  49. .. image:: https://coveralls.io/repos/django-extensions/django-extensions/badge.svg?branch=master
  50. :target: https://coveralls.io/r/django-extensions/django-extensions?branch=master
  51. :alt: Coverage
  52. Django Extensions is a collection of custom extensions for the Django Framework.
  53. Getting Started
  54. ===============
  55. The easiest way to figure out what Django Extensions are all about is to watch the
  56. `excellent screencast by Eric Holscher`__ (`watch the video on vimeo`__). In a couple
  57. minutes Eric walks you through a half a dozen command extensions. There is also a
  58. `short screencast on GoDjango's Youtube Channel`__ to help show you even more.
  59. Requirements
  60. ============
  61. Django Extensions requires Django 2.2 or later.
  62. Getting It
  63. ==========
  64. You can get Django Extensions by using pip::
  65. $ pip install django-extensions
  66. If you want to install it from source, grab the git repository from GitHub and run setup.py::
  67. $ git clone git://github.com/django-extensions/django-extensions.git
  68. $ cd django-extensions
  69. $ python setup.py install
  70. Installing It
  71. =============
  72. To enable `django_extensions` in your project you need to add it to `INSTALLED_APPS` in your projects
  73. `settings.py` file::
  74. INSTALLED_APPS = (
  75. ...
  76. 'django_extensions',
  77. ...
  78. )
  79. Using It
  80. ========
  81. Generate (and view) a graphviz graph of app models::
  82. $ python manage.py graph_models -a -o myapp_models.png
  83. Produce a tab-separated list of `(url_pattern, view_function, name)` tuples for a project::
  84. $ python manage.py show_urls
  85. Check templates for rendering errors::
  86. $ python manage.py validate_templates
  87. Run the enhanced django shell::
  88. $ python manage.py shell_plus
  89. Run the enhanced django runserver, (requires Werkzeug install)::
  90. $ python manage.py runserver_plus
  91. Getting Involved
  92. ================
  93. Open Source projects can always use more help. Fixing a problem, documenting a feature, adding
  94. translation in your language. If you have some time to spare and like to help us, here are the places to do so:
  95. - GitHub: https://github.com/django-extensions/django-extensions
  96. - Mailing list: http://groups.google.com/group/django-extensions
  97. - Translations: https://www.transifex.net/projects/p/django-extensions/
  98. Documentation
  99. =============
  100. You can view documentation online at:
  101. - https://django-extensions.readthedocs.io
  102. Or you can look at the docs/ directory in the repository.
  103. Support
  104. =======
  105. Django Extensions is free and always will be. It is development and maintained by developers in an Open Source manner.
  106. Any support is welcome. You could help by writing documentation, pull-requests, report issues and/or translations.
  107. Please remember that nobody is paid directly to develop or maintain Django Extensions so we do have to divide our time
  108. between putting food on the table, family, this project and the rest of life :-)
  109. __ http://ericholscher.com/blog/2008/sep/12/screencast-django-command-extensions/
  110. __ http://vimeo.com/1720508
  111. __ https://www.youtube.com/watch?v=1F6G3ONhr4k