Metadata-Version: 1.1
Name: django-dbml
Version: 0.2
Summary: This app can generate a DBML output for all installed models.
Home-page: https://makecodes.dev/
Author: Michel Wilhelm
Author-email: michelwilhelm@gmail.com
License: unlicense
Description: # django-dbml
        
        This app can generate a DBML output for all installed models.
        
        ## How to install and use?
        
        #### 1. Install the django-dbml package
        
        ```
        pip install django-dbml
        ```
        
        #### 2. Put django_dbml on your django settings
        
        ```python
        '...',
        'django_dbml',
        '...',
        ```
        
        #### 3. Run the command to generate a DBML schema based on your Django models
        
        ```bash
        $ python manage.py dbml all
        ```
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
