Metadata-Version: 2.1
Name: graphcanvas
Version: 4.1.0
Summary: interactive graph visualization
Home-page: https://github.com/enthought/graphcanvas
Author: Bryce Hendrix
Author-email: info@enthought.com
Maintainer: ETS Developers
Maintainer-email: enthought-dev@enthought.com
License: BSD
Download-URL: https://github.com/enthought/graphcanvas/archive/4.1.0.tar.gz
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

======================================================
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


