Metadata-Version: 2.1
Name: doit-graph
Version: 0.1.0
Summary: doit cmd plugin: create task's dependency-graph image
Home-page: http://github.com/pydoit/doit-graph
Author: Eduardo Naufel Schettino
License: MIT
Description: 
        # doit-graph
        
        Generates a graph (using graphviz's dot) of [doit](http://pydoit.org) tasks.
        
        Sample for [doit tutorial](http://pydoit.org/tutorial_1.html) tasks:
        
        ![Sample output](/tasks.png)
        
        
        ## install
        
        pip install doit-graph
        
        
        ## usage
        
        ```
        $ doit graph
        $ dot -Tpng tasks.dot -o tasks.png
        ```
        
        - By default sub-tasks are hidden. Use option `--show-subtasks` to display them.
        
        - By default all tasks are included in graph.
          It is possible to specify which tasks should be included in the graph (note dependencies will be automatically included).
        
        ### legend
        
        ![Legend](/legend.png)
        
        - group-tasks have double bondary border in the node
        - `task-dep` arrow have a solid head
        - `setup-task` arrow have an empty head
        
        
        
        ### limitations
        
        `calc_dep` and `delayed-tasks` are not supported.
        
        
        
        ## DEV notes
        
        http://graphviz.org/doc/info/attrs.html
        
Keywords: doit graph graphviz
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Intended Audience :: Developers
Description-Content-Type: text/markdown
