[ADD] Adding images for pagers & pager styling
[odoo/odoo.git] / setup.py
index 482284e..7f61d53 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -63,8 +63,6 @@ def py2exe_options():
         return {}
 
 execfile(join(os.path.dirname(__file__), 'openerp', 'release.py'))
-if timestamp:
-    version = version + "-" + timestamp
 
 setuptools.setup(
       name             = 'openerp',
@@ -81,27 +79,31 @@ setuptools.setup(
       packages         = setuptools.find_packages(),
       #include_package_data = True,
       install_requires = [
-       # We require the same version as caldav for lxml.
-          'lxml==2.1.5',
-          'mako',
-          'python-dateutil',
-          'psycopg2',
         # TODO the pychart package we include in openerp corresponds to PyChart 1.37.
         # It seems there is a single difference, which is a spurious print in generate_docs.py.
         # It is probably safe to move to PyChart 1.39 (the latest one).
         # (Let setup.py choose the latest one, and we should check we can remove pychart from
-        # our tree.)
-        # http://download.gna.org/pychart/
-          'pychart',
+        # our tree.) http://download.gna.org/pychart/
+        # TODO  'pychart',
+          'babel',
+          'feedparser',
+          'gdata',
+          'lxml',
+          'mako',
+          'psycopg2',
           'pydot',
+          'python-dateutil < 2',
+          'python-ldap',
+          'python-openid',
           'pytz',
-          'reportlab',
-          'caldav',
-          'pyyaml',
           'pywebdav',
-          'feedparser',
-          'simplejson >= 2.0',
-          'vatnumber', # required by base_vat module
+          'pyyaml',
+          'reportlab',
+          'simplejson',
+          'vatnumber',
+          'vobject',
+          'werkzeug',
+          'zsi',
       ],
       extras_require = {
           'SSL' : ['pyopenssl'],
@@ -109,3 +111,5 @@ setuptools.setup(
       **py2exe_options()
 )
 
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: