[FIX] event: reset tax for each event to invoice
[odoo/odoo.git] / setup.py
1 #!/usr/bin/env python
2 # -*- encoding: utf-8 -*-
3 ##############################################################################
4 #
5 #    OpenERP, Open Source Management Solution
6 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
7 #    $Id$
8 #
9 #    This program is free software: you can redistribute it and/or modify
10 #    it under the terms of the GNU General Public License as published by
11 #    the Free Software Foundation, either version 3 of the License, or
12 #    (at your option) any later version.
13 #
14 #    This program is distributed in the hope that it will be useful,
15 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
16 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 #    GNU General Public License for more details.
18 #
19 #    You should have received a copy of the GNU General Public License
20 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 #
22 ##############################################################################
23
24 # setup for OpenERP Server
25 #   taken from straw http://www.nongnu.org/straw/index.html
26 #   taken from gnomolicious http://www.nongnu.org/gnomolicious/
27 #   adapted by Nicolas Évrard <nicoe@altern.org>
28
29 import sys
30 import os
31 import glob
32
33 from distutils.core import setup
34 from distutils.command.install import install
35 from distutils.sysconfig import get_python_lib
36
37 sys.path.append(os.path.join(os.path.abspath(os.path.dirname(__file__)), "bin"))
38
39 opj = os.path.join
40
41 execfile(opj('bin', 'release.py'))
42
43 if 'bdist_rpm' in sys.argv:
44     version = version.split('-')[0]
45
46 # get python short version
47 py_short_version = '%s.%s' % sys.version_info[:2]
48
49 required_modules = [
50     ('psycopg2', 'PostgreSQL module'),
51     ('reportlab', 'reportlab module'),
52     ('pychart', 'pychart module'),
53     ('pydot', 'pydot module'),
54     ('lxml', 'lxml module: pythonic libxml2 and libxslt bindings'),
55 ]
56
57 def check_modules():
58     ok = True
59     for modname, desc in required_modules:
60         try:
61             exec('import %s' % modname)
62         except ImportError:
63             ok = False
64             print 'Error: python module %s (%s) is required' % (modname, desc)
65
66     if not ok:
67         sys.exit(1)
68
69 def find_addons():
70     for (dp, dn, names) in os.walk(opj('bin', 'addons')):
71         if '__terp__.py' in names:
72             modname = dp.replace(os.path.sep, '.').replace('bin', 'openerp-server', 1)
73             yield modname
74
75 def data_files():
76     '''Build list of data files to be installed'''
77     files = []
78     if sys.platform == 'win32':
79         os.chdir('bin')
80         for (dp, dn, names) in os.walk('addons'):
81             files.append((dp, map(lambda x: opj('bin', dp, x), names)))
82         os.chdir('..')
83         for (dp, dn, names) in os.walk('doc'):
84             files.append((dp, map(lambda x: opj(dp, x), names)))
85         files.append(('.', [opj('bin', 'import_xml.rng'),
86                             opj('bin', 'server.pkey'),
87                             opj('bin', 'server.cert')]))
88     else:
89         man_directory = opj('share', 'man')
90         files.append((opj(man_directory, 'man1'), ['man/openerp-server.1']))
91         files.append((opj(man_directory, 'man5'), ['man/openerp_serverrc.5']))
92
93         doc_directory = opj('share', 'doc', 'openerp-server-%s' % version)
94         files.append((doc_directory, [f for f in glob.glob('doc/*') if os.path.isfile(f)]))
95         files.append((opj(doc_directory, 'migrate', '3.3.0-3.4.0'), [f for f in glob.glob('doc/migrate/3.3.0-3.4.0/*') if os.path.isfile(f)]))
96         files.append((opj(doc_directory, 'migrate', '3.4.0-4.0.0'), [f for f in glob.glob('doc/migrate/3.4.0-4.0.0/*') if os.path.isfile(f)]))
97
98         openerp_site_packages = opj(get_python_lib(prefix=''), 'openerp-server')
99
100         files.append((openerp_site_packages, [opj('bin', 'import_xml.rng'),
101                                               opj('bin', 'server.pkey'),
102                                               opj('bin', 'server.cert')]))
103
104         for addon in find_addons():
105             addonname = addon.split('.')[-1]
106             add_path = addon.replace('.', os.path.sep).replace('openerp-server', 'bin', 1)
107             addon_path = opj(get_python_lib(prefix=''),
108                              add_path.replace('bin', 'openerp-server', 1))
109             pathfiles = []
110             for root, dirs, innerfiles in os.walk(add_path):
111                 innerfiles = filter(lambda file: os.path.splitext(file)[1] not in ('.pyc', '.pyd', '.pyo'), innerfiles)
112                 if innerfiles:
113                     res = os.path.normpath(
114                         opj(addon_path, root.replace(opj('bin', 'addons', addonname), '.'))
115                     )
116                     pathfiles.extend(((res, map(lambda file: opj(root, file), innerfiles)),))
117             files.extend(pathfiles)
118
119     return files
120
121 check_modules()
122
123 f = file('openerp-server','w')
124 start_script = """#!/bin/sh\necho "OpenERP Setup - The content of this file is generated at the install stage\n" """
125 f.write(start_script)
126 f.close()
127
128 class openerp_server_install(install):
129     def run(self):
130         # create startup script
131         start_script = "#!/bin/sh\ncd %s\nexec %s ./openerp-server.py $@\n" % (opj(self.install_libbase, "openerp-server"), sys.executable)
132         # write script
133         f = open('openerp-server', 'w')
134         f.write(start_script)
135         f.close()
136         install.run(self)
137
138 complementary_arguments = dict()
139
140 has_py2exe = False
141
142 if sys.platform == 'win32':
143     complementary_arguments['windows'] = [
144         {
145             "script" : os.path.join('bin', 'openerp-server.py'),
146             "icon_resources" : [ (1, os.path.join('pixmaps', 'openerp-icon.ico')) ]
147         }
148     ]
149
150     import py2exe
151
152     has_py2exe = True
153
154     complementary_arguments['options'] = {
155         'py2exe' : {
156             "compressed": 1,
157             "optimize": 2,
158             "dist_dir": 'dist',
159             "packages": [
160                 "lxml", "lxml.builder", "lxml._elementpath", "lxml.etree",
161                 "lxml.objectify", "decimal", "xml", "xml.dom", "xml.xpath",
162                 "encodings", "mx.DateTime","wizard","pychart","PIL", "pyparsing",
163                 "pydot", "asyncore", "asynchat", "reportlab", "vobject",
164                 "HTMLParser", "select", "mako", "poplib",
165                 "imaplib", "smtplib", "email",
166             ],
167             "excludes" : ["Tkconstants","Tkinter","tcl"],
168         }
169     }
170
171
172 setup(name             = name,
173       version          = version,
174       description      = description,
175       long_description = long_desc,
176       url              = url,
177       author           = author,
178       author_email     = author_email,
179       classifiers      = filter(None, classifiers.split("\n")),
180       license          = license,
181       data_files       = data_files(),
182       cmdclass         = {
183           'install' : openerp_server_install,
184       },
185       scripts          = ['openerp-server'],
186       packages         = ['openerp-server',
187                           'openerp-server.addons',
188                           'openerp-server.ir',
189                           'openerp-server.osv',
190                           'openerp-server.service',
191                           'openerp-server.tools',
192                           'openerp-server.report',
193                           'openerp-server.report.printscreen',
194                           'openerp-server.report.pyPdf',
195                           'openerp-server.report.render',
196                           'openerp-server.report.render.rml2pdf',
197                           'openerp-server.report.render.rml2html',
198                           'openerp-server.wizard',
199                           'openerp-server.report.render.odt2odt',
200                           'openerp-server.report.render.html2html',
201                           'openerp-server.workflow'] + \
202                          list(find_addons()),
203       package_dir      = {'openerp-server': 'bin'},
204       **complementary_arguments
205      )
206
207 if has_py2exe:
208     # Sometime between pytz-2008a and pytz-2008i common_timezones started to
209     # include only names of zones with a corresponding data file in zoneinfo.
210     # pytz installs the zoneinfo directory tree in the same directory
211     # as the pytz/__init__.py file. These data files are loaded using
212     # pkg_resources.resource_stream. py2exe does not copy this to library.zip so
213     # resource_stream can't find the files and common_timezones is empty when
214     # read in the py2exe executable.
215     # This manually copies zoneinfo into the zip. See also
216     # http://code.google.com/p/googletransitdatafeed/issues/detail?id=121
217     import pytz
218     import zipfile
219     # Make sure the layout of pytz hasn't changed
220     assert (pytz.__file__.endswith('__init__.pyc') or
221             pytz.__file__.endswith('__init__.py')), pytz.__file__
222     zoneinfo_dir = os.path.join(os.path.dirname(pytz.__file__), 'zoneinfo')
223     # '..\\Lib\\pytz\\__init__.py' -> '..\\Lib'
224     disk_basedir = os.path.dirname(os.path.dirname(pytz.__file__))
225     zipfile_path = os.path.join(complementary_arguments['options']['py2exe']['dist_dir'], 'library.zip')
226     z = zipfile.ZipFile(zipfile_path, 'a')
227
228     for absdir, directories, filenames in os.walk(zoneinfo_dir):
229         assert absdir.startswith(disk_basedir), (absdir, disk_basedir)
230         zip_dir = absdir[len(disk_basedir):]
231         for f in filenames:
232             z.write(os.path.join(absdir, f), os.path.join(zip_dir, f))
233
234     z.close()
235