Metadata-Version: 2.1
Name: twelve_step
Version: 0.2.0
Summary: A package to analyze project dependencies.
Home-page: https://github.com/OLBEA20/twelve-step
Author: Olivier Beaulieu
Author-email: beaulieu.olivier@hotmail.com
License: MIT
Description: # Twelve-Step
        
        ---
        
        A python tool to analyse dependencies of python projects.
        
        ## Installation
        
        This package requires python3.7 or more.
        
        ```bash
        pip3.7 install twelve-step --user
        ```
        
        ## Example usages
        
        By default twelve step generates a DOT graph and prints it in console.
        
        ### To generate a dot file
        
        ```bash
        twelve-step a_project_path > dependency-graph.dot
        ```
        
        or
        
        ```bash
        twelve-step a_project_path -o dependency-graph
        ```
        
        ### To generate a graph .svg in one command
        
        ```bash
        twelve-step a_project_path | dot -Tsvg -o dependency-graph.svg
        ```
        
Keywords: Dependency,Analysis,Dependencies,Graph
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.7
Description-Content-Type: text/markdown
