Meaningfull IDs for fiscal positions and tax mappings
[odoo/odoo.git] / setup.py
index 9595c1a..6e1adad 100755 (executable)
--- a/setup.py
+++ b/setup.py
 import glob, os, re, setuptools, sys
 from os.path import join, isfile
 
-execfile(join('openerp', 'release.py'))
-
-py2exe_keywords = {}
-if os.name == 'nt':
-    import py2exe
-    py2exe_keywords['console'] = [
-        { "script": "openerp-server",
-          "icon_resources": [(1, join("pixmaps","openerp-icon.ico"))],
-        }]
-    py2exe_keywords['options'] = {
-        "py2exe": {
-            "skip_archive": 1,
-            "optimize": 2,
-            "dist_dir": 'dist',
-            "packages": [
-                "lxml", "lxml.builder", "lxml._elementpath", "lxml.etree",
-                "lxml.objectify", "decimal", "xml", "xml", "xml.dom", "xml.xpath",
-                "encodings", "dateutil", "pychart", "PIL", "pyparsing",
-                "pydot", "asyncore","asynchat", "reportlab", "vobject",
-                "HTMLParser", "select", "mako", "poplib",
-                "imaplib", "smtplib", "email", "yaml", "DAV",
-                "uuid", "commands", "openerp", "simplejson", "vatnumber"
-            ],
-            "excludes" : ["Tkconstants","Tkinter","tcl"],
-        }
-    }
-
 # List all data files
 def data():
     files = []
@@ -65,14 +38,44 @@ def data():
         else:
             d[k]=[v]
     r = d.items()
+    if os.name == 'nt':
+        r.append(("Microsoft.VC90.CRT", glob.glob('C:\Microsoft.VC90.CRT\*.*')))
+
+    import babel
+    r.append(("localedata",
+              glob.glob(os.path.join(os.path.dirname(babel.__file__), "localedata" , '*'))))
+
     return r
 
 def gen_manifest():
     file_list="\n".join(data())
     open('MANIFEST','w').write(file_list)
 
+if os.name == 'nt':
+    sys.path.append("C:\Microsoft.VC90.CRT")
+
+def py2exe_options():
+    if os.name == 'nt':
+        import py2exe
+        return {
+            "console" : [ { "script": "openerp-server", "icon_resources": [(1, join("install","openerp-icon.ico"))], }],
+            'options' : {
+                "py2exe": {
+                    "skip_archive": 1,
+                    "optimize": 2,
+                    "dist_dir": 'dist',
+                    "packages": [ "DAV", "HTMLParser", "PIL", "asynchat", "asyncore", "commands", "dateutil", "decimal", "email", "encodings", "imaplib", "lxml", "lxml._elementpath", "lxml.builder", "lxml.etree", "lxml.objectify", "mako", "openerp", "poplib", "pychart", "pydot", "pyparsing", "reportlab", "select", "simplejson", "smtplib", "uuid", "vatnumber", "vobject", "xml", "xml.dom", "yaml", ],
+                    "excludes" : ["Tkconstants","Tkinter","tcl"],
+                }
+            }
+        }
+    else:
+        return {}
+
+execfile(join(os.path.dirname(__file__), 'openerp', 'release.py'))
+
 setuptools.setup(
-      name             = name,
+      name             = 'openerp',
       version          = version,
       description      = description,
       long_description = long_desc,
@@ -86,31 +89,38 @@ 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',
+          'xlwt',
+          'zsi',
       ],
       extras_require = {
           'SSL' : ['pyopenssl'],
       },
-      **py2exe_keywords
+      **py2exe_options()
 )
 
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: