Metadata-Version: 1.1
Name: tergraw
Version: 0.2.0
Summary: Draw graphs in terminal
Home-page: https://github.com/Aluriak/tergraw
Author: lucas
Author-email: lucas.bourneuf@laposte.net
License: UNKNOWN
Description: # TERminal GRaph drAWing
        A dumb and simple graph printing in your terminal, implemented in Python.
        
        Here is the API:
        
            GRAPH = {'a': {'b', 'c'}, 'd': {'b', 'e'}, 'f': {'g'}}
        
            print('\n'.join(tergraw.pretty_view(GRAPH, oriented=True)))
        
        Installation:
        
            pip install tergraw
            
        Needs the [graphviz library](http://graphviz.org/Download..php) to be installed.
        
        links: tergraw on [github](http://github.com/aluriak/tergraw) and [pypi](http://pypi.python.org/pypi/tergraw)
        
Keywords: graph terminal draw
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: English
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
