Metadata-Version: 2.1
Name: django-model-info
Version: 0.1.0
Summary: A Django Management Command for displaying details about your project's models
Home-page: https://github.com/jacklinke/django-model-info
Author: Jack Linke
Author-email: jack@watervize.com
License: MIT
Description: # django-model-info
        
        [![image][]][1]
        
        [![image][2]][3]
        
        [![image][4]][5]
        
        A Django Management Command for displaying details about your project's models
        
        This package takes the original `list_model_info` command I wrote for `django-extensions` to a whole new level. More information and much more beautiful interface, thanks to [`rich`](https://github.com/willmcgugan/rich/)
        
        ## Documentation
        
        The full documentation is at <https://django-model-info.readthedocs.io>.
        
        ## Quickstart
        
        Install django-model-info:
        
            pip install django-model-info
        
        Add it to your \`INSTALLED_APPS\`:
        
        ``` python
        INSTALLED_APPS = (
            ...
            'django_model_info.apps.DjangoModelInfoConfig',
            ...
        )
        ```
        
        Add django-model-info's URL patterns:
        
        ``` python
        from django_model_info import urls as django_model_info_urls
        
        
        urlpatterns = [
            ...
            url(r'^', include(django_model_info_urls)),
            ...
        ]
        ```
        
        ## Features
        
        -   TODO
        
        ## Running Tests
        
        Does the code actually work?
        
            source <YOURVIRTUALENV>/bin/activate
            (myenv) $ pip install tox
            (myenv) $ tox
        
        ## Development commands
        
            pip install -r requirements_dev.txt
            invoke -l
        
        ## Credits
        
        Tools used in rendering this package:
        
        -   [Cookiecutter][]
        -   [cookiecutter-djangopackage][]
        
          [image]: https://badge.fury.io/py/django-model-info.svg
          [1]: https://badge.fury.io/py/django-model-info
          [2]: https://travis-ci.org/jacklinke/django-model-info.svg?branch=master
          [3]: https://travis-ci.org/jacklinke/django-model-info
          [4]: https://codecov.io/gh/jacklinke/django-model-info/branch/master/graph/badge.svg
          [5]: https://codecov.io/gh/jacklinke/django-model-info
          [Cookiecutter]: https://github.com/audreyr/cookiecutter
          [cookiecutter-djangopackage]: https://github.com/pydanny/cookiecutter-djangopackage
        
        # History
        
        ## 0.1.0 (2021-12-12)
        
        -   First release on PyPI.
Keywords: django-model-info
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
