Add function _prepare_invoice(), which builds the dict containing the values of the...
[odoo/odoo.git] / README
1 pydot - Python interface to Graphviz's Dot language
2 Ero Carrera (c) 2004-2007
3 ero@dkbza.org
4
5 This code is distributed under the MIT license.
6
7 Requirements:
8 -------------
9
10 pyparsing: pydot requires the pyparsing module in order to be
11         able to load DOT files.
12
13 GraphViz:  is needed in order to render the graphs into any of
14         the plethora of output formats supported.
15
16 Installation:
17 -------------
18
19 Should suffice with doing:
20
21  python setup.py install
22
23 Needless to say, no installation is needed just to use the module. A mere:
24
25  import pydot
26
27 should do it, provided that the directory containing the modules is on Python
28 module search path.
29