[REF] Add the uuid library in the dependencies and remove the commented code
authorStephane Wirtel <stephane@openerp.com>
Wed, 29 Dec 2010 11:52:33 +0000 (12:52 +0100)
committerStephane Wirtel <stephane@openerp.com>
Wed, 29 Dec 2010 11:52:33 +0000 (12:52 +0100)
bzr revid: stephane@openerp.com-20101229115233-rhr4ika4611kikue

setup.py

index 894c7f7..4a686eb 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -33,7 +33,7 @@ import glob
 
 from pprint import pprint as pp
 
-from setuptools import setup as official_setup, find_packages
+from setuptools import setup, find_packages
 from setuptools.command.install import install
 from distutils.sysconfig import get_python_lib
 
@@ -169,21 +169,18 @@ options = {
         "optimize": 2,
         "dist_dir": 'dist',
         "packages": [
-                 "lxml", "lxml.builder", "lxml._elementpath", "lxml.etree",
-                 "lxml.objectify", "decimal", "xml", "xml", "xml.dom", "xml.xpath",
-                 "encodings", "dateutil", "wizard", "pychart", "PIL", "pyparsing",
-                 "pydot", "asyncore","asynchat", "reportlab", "vobject",
-                 "HTMLParser", "select", "mako", "poplib",
-                 "imaplib", "smtplib", "email", "yaml", "DAV",
-                 ],
+            "lxml", "lxml.builder", "lxml._elementpath", "lxml.etree",
+            "lxml.objectify", "decimal", "xml", "xml", "xml.dom", "xml.xpath",
+            "encodings", "dateutil", "wizard", "pychart", "PIL", "pyparsing",
+            "pydot", "asyncore","asynchat", "reportlab", "vobject",
+            "HTMLParser", "select", "mako", "poplib",
+            "imaplib", "smtplib", "email", "yaml", "DAV",
+            "uuid",
+        ],
         "excludes" : ["Tkconstants","Tkinter","tcl"],
     }
 }
 
-def setup(**kwargs):
-    #pp(kwargs)
-    return official_setup(**kwargs)
-
 setup(name             = name,
       version          = version,
       description      = description,
@@ -225,13 +222,8 @@ setup(name             = name,
           'reportlab',
           'caldav',
           'pyyaml',
-          #'django',
           'pywebdav'
-          #'cx_Oracle',
-          #'mysqldb',
           'feedparser',
-          #'bsddb3',
-          'egenix-mx-base'
       ],
       extras_require={
           'SSL' : ['pyopenssl'],