From b0edc6267100d3e8e7fe1607e9c168d0660668a9 Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Tue, 6 Dec 2011 15:58:38 +0100 Subject: [PATCH] [FIX] dependencies: don't grab dateutil >= 2.0, it's the Python3 version and incompatible with P2 bzr revid: xmo@openerp.com-20111206145838-o6g3o19s0o6ggipi --- README | 64 +++++++++++++++++--------------------------------------- setup.py | 2 +- 2 files changed, 20 insertions(+), 46 deletions(-) diff --git a/README b/README index 5683fa0f84c..e255e3607e1 100644 --- a/README +++ b/README @@ -1,55 +1,29 @@ -About OpenERP +pydot - Python interface to Graphviz's Dot language +Ero Carrera (c) 2004-2007 +ero@dkbza.org + +This code is distributed under the MIT license. + +Requirements: ------------- -OpenERP is an OpenSrouce/Free software Enterprise Resource Planning and -Customer Relationship Management software. More info at: +pyparsing: pydot requires the pyparsing module in order to be + able to load DOT files. - http://www.openerp.com +GraphViz: is needed in order to render the graphs into any of + the plethora of output formats supported. -Installation on Debian Ubuntu ------------------------------ +Installation: +------------- -Add the the apt repository in your source.list and type: +Should suffice with doing: - $ apt-get install openerp + python setup.py install -Installation on RedHat, Fedora, CentOS --------------------------------------- +Needless to say, no installation is needed just to use the module. A mere: -Install the required dependencies: + import pydot - $ yum install python - $ easy_install pip - $ pip install ..... - -Install the openerp rpm - - $ rpm -i openerp-VERSION.rpm - -Installation on Windows ------------------------ - -Installation on MacOSX ------------------------ - -Setuping you first database ---------------------------- - -Point your browser to http://localhost:8069/ and click "Database", the default -master password is "admin". - -Detailed System Requirements ----------------------------- - -You need the following software installed: - -python, postgresql-client, python-dateutil, python-gdata, python-ldap, -python-libxslt1, python-lxml, python-mako, python-openid, python-psycopg2, -python-pybabel, python-pychart, python-pydot, python-pyparsing, -python-reportlab, python-simplejson, python-tz, python-vobject, python-webdav, -python-werkzeug, python-yaml, python-zsi, graphviz, ghostscript, postgresql, -python-imaging, python-matplotlib - -For Luxembourg localization, you also need: -* pdftk (http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/) +should do it, provided that the directory containing the modules is on Python +module search path. diff --git a/setup.py b/setup.py index 40695bd7c41..7f61d534db0 100755 --- a/setup.py +++ b/setup.py @@ -92,7 +92,7 @@ setuptools.setup( 'mako', 'psycopg2', 'pydot', - 'python-dateutil', + 'python-dateutil < 2', 'python-ldap', 'python-openid', 'pytz',