X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=setup.py;h=6e1adadde826c99f3b812c8256c809b9db83c7fb;hb=042a5f823ddcfb291fe42165d57c9689527bbeb8;hp=d52bf951820e7a6e20c090e0844902a92aadf3b6;hpb=8a28b0828c27bcefe20170f5a732cb564ca229aa;p=odoo%2Fodoo.git diff --git a/setup.py b/setup.py index d52bf95..6e1adad 100755 --- a/setup.py +++ b/setup.py @@ -38,23 +38,33 @@ 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("pixmaps","openerp-icon.ico"))], }], + "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", "xml.dom", "xml.xpath", "yaml", ], + "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"], } } @@ -63,8 +73,6 @@ def py2exe_options(): return {} execfile(join(os.path.dirname(__file__), 'openerp', 'release.py')) -if timestamp: - version = version + "-" + timestamp setuptools.setup( name = 'openerp', @@ -94,7 +102,7 @@ setuptools.setup( 'mako', 'psycopg2', 'pydot', - 'python-dateutil', + 'python-dateutil < 2', 'python-ldap', 'python-openid', 'pytz', @@ -102,8 +110,10 @@ setuptools.setup( 'pyyaml', 'reportlab', 'simplejson', - 'vatnumber', # recommended by base_vat + 'vatnumber', + 'vobject', 'werkzeug', + 'xlwt', 'zsi', ], extras_require = { @@ -112,3 +122,5 @@ setuptools.setup( **py2exe_options() ) + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: