Metadata-Version: 1.1
Name: graphcanvas
Version: 4.0.2
Summary: interactive graph visualization
Home-page: https://github.com/enthought/graphcanvas
Author: ETS Developers
Author-email: enthought-dev@enthought.com
License: BSD
Download-URL: http://www.enthought.com/repo/ets/graphcanvas-4.0.2.tar.gz
Description: ======================================================
        graphcanvas: interactive graph (network) visualization
        ======================================================
        
        graphcanvas is an library for interacting with visualizations of complex
        graphs. The aim is to allow the developer to declare the graph by the
        simplest means and be able to visualize the graph immediately.
        
        For example::
        
            from graphcanvas.api import GraphView, graph_from_dict
            g = {'a':['b'], 'b':['c', 'd'], 'c':[], 'd':[]}
            GraphView(graph=graph_from_dict(g)).configure_traits()
        
        
        Prerequisites
        -------------
        
        * `NetworkX <http:://networkx.lanl.gov>`_
        * `distribute <http://pypi.python.org/pypi/distribute>`_
        * enable
        
Platform: Windows
Platform: Linux
Platform: Mac OS-X
Platform: Unix
Platform: Solaris
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: C
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
