Rml2txt: include it in the installation
[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-2008 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 from TinERP
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
30 import imp
31 import sys
32 import os
33 import glob
34
35 from distutils.core import setup, Command
36 from distutils.command.install import install
37
38 if os.name == 'nt':
39     import py2exe
40
41 sys.path.append(os.path.join(os.path.abspath(os.path.dirname(__file__)), "bin"))
42
43 opj = os.path.join
44
45 execfile(opj('bin', 'release.py'))
46
47 # get python short version
48 py_short_version = '%s.%s' % sys.version_info[:2]
49
50 required_modules = [
51     ('psycopg2', 'PostgreSQL module'),
52     ('xml', 'XML Tools for python'),
53     ('libxml2', 'libxml2 python bindings'),
54     ('libxslt', 'libxslt python bindings'),
55     ('reportlab', 'reportlab module'),
56     ('pychart', 'pychart module'),
57     ('pydot', 'pydot module'),
58 ]
59
60 def check_modules():
61     ok = True
62     for modname, desc in required_modules:
63         try:
64             exec('import %s' % modname)
65         except ImportError:
66             ok = False
67             print 'Error: python module %s (%s) is required' % (modname, desc)
68
69     if not ok:
70         sys.exit(1)
71
72 def find_addons():
73     for (dp, dn, names) in os.walk(opj('bin', 'addons')):
74         if '__init__.py' in names:
75             modname = dp.replace(os.path.sep, '.').replace('bin', 'openerp-server', 1)
76             yield modname
77
78 def data_files():
79     '''Build list of data files to be installed'''
80     files = []
81     if os.name == 'nt':
82         os.chdir('bin')
83         for (dp,dn,names) in os.walk('addons'):
84             files.append((dp, map(lambda x: opj('bin', dp, x), names)))
85         os.chdir('..')
86         for (dp,dn,names) in os.walk('doc'):
87             files.append((dp, map(lambda x: opj(dp, x), names)))
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('lib', 'python%s' % py_short_version, 'site-packages', 'openerp-server')
99
100         for addon in find_addons():
101             add_path = addon.replace('.', os.path.sep).replace('openerp-server', 'bin', 1)
102             addon_path = opj('lib', 'python%s' % py_short_version, 'site-packages', add_path.replace('bin', 'openerp-server', 1))
103             pathfiles = []
104             for root, dirs, innerfiles in os.walk(add_path):
105                 innerfiles = filter(lambda file: os.path.splitext(file)[1] not in ('.pyc', '.py', '.pyd', '.pyo'), innerfiles)
106                 if innerfiles:
107                     pathfiles.extend(((opj(addon_path, root.replace('bin/addons/', '')), map(lambda file: opj(root, file), innerfiles)),))
108             files.extend(pathfiles)
109     return files
110
111 check_modules()
112
113 f = file('openerp-server','w')
114 start_script = """#!/bin/sh\necho "OpenERP Setup - The content of this file is generated at the install stage\n" """
115 f.write(start_script)
116 f.close()
117
118 class openerp_server_install(install):
119     def run(self):
120         # create startup script
121         start_script = "#!/bin/sh\ncd %s\nexec %s ./openerp-server.py $@\n" % (opj(self.install_libbase, "openerp-server"), sys.executable)
122         # write script
123         f = open('openerp-server', 'w')
124         f.write(start_script)
125         f.close()
126         install.run(self)
127
128 options = {
129     "py2exe": {
130         "compressed": 1,
131         "optimize": 2, 
132         "packages": ["lxml", "lxml.builder", "lxml._elementpath", "lxml.etree", 
133                      "lxml.objectify", "decimal", "xml", "xml.dom", "xml.xpath", 
134                      "encodings","mx.DateTime","wizard","pychart","PIL", "pyparsing", 
135                      "pydot","asyncore","asynchat", "reportlab", "vobject", "HTMLParser"],
136         "excludes" : ["Tkconstants","Tkinter","tcl"],
137     }
138 }
139
140 setup(name             = name,
141       version          = version,
142       description      = description,
143       long_description = long_desc,
144       url              = url,
145       author           = author,
146       author_email     = author_email,
147       classifiers      = filter(None, classifiers.split("\n")),
148       license          = license,
149       data_files       = data_files(),
150       cmdclass         = { 
151             'install' : openerp_server_install,
152       },
153       scripts          = ['openerp-server'],
154       packages         = ['openerp-server', 
155                           'openerp-server.addons',
156                           'openerp-server.ir',
157                           'openerp-server.osv',
158                           'openerp-server.ssl',
159                           'openerp-server.service', 
160                           'openerp-server.tools',
161                           'openerp-server.report',
162                           'openerp-server.report.printscreen',
163                           'openerp-server.report.render',
164                           'openerp-server.report.render.rml2pdf',
165                           'openerp-server.report.render.rml2html',
166                           'openerp-server.report.render.rml2txt',
167                           'openerp-server.wizard', 
168                           'openerp-server.workflow'] + \
169                          list(find_addons()),
170       package_dir      = {'openerp-server': 'bin'},
171       console = [ { "script" : "bin\\openerp-server.py", "icon_resources" : [ (1,"pixmaps\\openerp-icon.ico") ] } ],
172       options = options,
173       )
174
175
176 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
177