Metadata-Version: 1.1
Name: django-model2puml
Version: 0.1.4
Summary: A Django app to generate PlantUML diagram of project models.
Home-page: https://www.githum.com/sen-den/django2puml
Author: Denis Senchishen
Author-email: dsenchishen@icloud.com
License: MIT
Description: ===================
        Plant UML generator
        ===================
        
        django-model2puml app is a generator of project models structure in
        PlantUML class notation.
        
        Quick start
        -----------
        
        1. Add "uml_generator" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'puml_generator',
            ]
        
        2. Run django management command ``generate_puml`` like this ``./manage.py generate_puml``
        
        Params::
        
        --file - output file
        --add-help - to add docstrings to diagram
        --add-choices - to add Choices description of fields to diagram
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
