odoo/bin/addons/base/ir/workflow/pydot
pinky 004a0b996f New trunk
bzr revid: pinky-3f10ee12cea3c4c75cef44ab04ad33ef47432907
2006-12-07 13:41:40 +00:00
..
LICENSE New trunk 2006-12-07 13:41:40 +00:00
PKG-INFO New trunk 2006-12-07 13:41:40 +00:00
README New trunk 2006-12-07 13:41:40 +00:00
__init__.py New trunk 2006-12-07 13:41:40 +00:00
dot_parser.py New trunk 2006-12-07 13:41:40 +00:00
pydot.py New trunk 2006-12-07 13:41:40 +00:00
setup.py New trunk 2006-12-07 13:41:40 +00:00

README

pydot - Python interface to Graphviz's Dot language
Ero Carrera (c) 2004
ero@dkbza.org

This code is distributed under the MIT license.

Requirements:
-------------

pyparsing: pydot requires the pyparsing module in order to be
	able to load DOT files.

GraphViz:  is needed in order to render the graphs into any of
	the plethora of output formats supported.

Installation:
-------------

Should suffice with doing:

 python setup.py install

Needless to say, no installation is needed just to use the module. A mere:

 import pydot

should do it, provided that the directory containing the modules is on Python
module search path.