From 70d97d67dbcd897a457fe74ed2137c8030b55f1c Mon Sep 17 00:00:00 2001 From: Vo Minh Thu Date: Wed, 6 Mar 2013 12:21:59 +0100 Subject: [PATCH] [FIX] setup.py (windows): add some babel files not automatically included by py2exe. lp bug: https://launchpad.net/bugs/1089801 fixed bzr revid: vmt@openerp.com-20130306112159-9j58mf0se3lf7a0j --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 58d23d7a778..1229a6ca9bf 100755 --- a/setup.py +++ b/setup.py @@ -35,7 +35,15 @@ def data(): r["Microsoft.VC90.CRT"] = glob.glob('C:\Microsoft.VC90.CRT\*.*') import babel - r["localedata"] = glob.glob(os.path.join(os.path.dirname(babel.__file__), "localedata", '*')) + # Add data, but also some .py files py2exe won't include automatically. + # TODO This should probably go under `packages`, instead of `data`, + # but this will work fine (especially since we don't use the ZIP file + # approach). + r["babel/localedata"] = glob.glob(os.path.join(os.path.dirname(babel.__file__), "localedata", '*')) + others = ['global.dat', 'numbers.py', 'support.py'] + r["babel"] = map(lambda f: os.path.join(os.path.dirname(babel.__file__), f), others) + others = ['frontend.py', 'mofile.py'] + r["babel/messages"] = map(lambda f: os.path.join(os.path.dirname(babel.__file__), "messages", f), others) import pytz tzdir = os.path.dirname(pytz.__file__)