Metadata-Version: 1.1
Name: PyGraphine
Version: 1.0.4
Summary: Graph manipulation package based on GraphState
Home-page: http://pypi.python.org/pypi/PyGraphine/
Author: D. Batkovich
Author-email: batya239@gmail.com
License: LICENSE.txt
Description: 1.to install in userspace run:
        
        $ python setup.py install --user
        
        or to setup in global space
        
        $ sudo setup.py install
        
        2. run tests:
        
        $ cd graphine/test/; python graph_operations_test.py; cd ../..
        $ cd graphine/test/; python graph_test.py; cd ../..
        
        You must see "OK" after test execution
        
        3. run simple example from python CLI interface:
        
        >>> import graphine
        >>> g = graphine.Graph.from_str("e11|e|")
        >>> print g
        e11|e|
        >>> print g.edges(0, 1)
        (((0, 1), ), ((0, 1), ))
        >>> print g.external_edges
        (((0,), ), ((1,), ))
        
        4. you can see manual at https://readthedocs.org/projects/graphstate-and-graphine/
        
Platform: UNKNOWN
Requires: GraphState (>= 1.0.2)
