X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=setup.py;h=6e1adadde826c99f3b812c8256c809b9db83c7fb;hb=41d750c1d4a3ffe44315d6e9132f4bfc647a1f48;hp=9e075db314c165afb2f08422b3b42401464dcb45;hpb=dbb99ced9b346e8e2b7a1d8f04c4cb22b51147e8;p=odoo%2Fodoo.git diff --git a/setup.py b/setup.py index 9e075db..6e1adad 100755 --- a/setup.py +++ b/setup.py @@ -23,33 +23,6 @@ import glob, os, re, setuptools, sys from os.path import join, isfile -execfile(join(os.path.dirname(__file__), '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,12 +38,42 @@ 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 = 'openerp', version = version, @@ -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: