Merge remote-tracking branch 'odoo/7.0' into 7.0
[odoo/odoo.git] / setup.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 import glob, os, re, setuptools, sys
23 from os.path import join
24
25 # List all data files
26 def data():
27     r = {}
28     for root, dirnames, filenames in os.walk('openerp'):
29         for filename in filenames:
30             if not re.match(r'.*(\.pyc|\.pyo|\~)$', filename):
31                 r.setdefault(root, []).append(os.path.join(root, filename))
32
33     if os.name == 'nt':
34         r["Microsoft.VC90.CRT"] = glob.glob('C:\Microsoft.VC90.CRT\*.*')
35
36         import babel
37         # Add data, but also some .py files py2exe won't include automatically.
38         # TODO This should probably go under `packages`, instead of `data`,
39         # but this will work fine (especially since we don't use the ZIP file
40         # approach).
41         r["babel/localedata"] = glob.glob(os.path.join(os.path.dirname(babel.__file__), "localedata", '*'))
42         others = ['global.dat', 'numbers.py', 'support.py']
43         r["babel"] = map(lambda f: os.path.join(os.path.dirname(babel.__file__), f), others)
44         others = ['frontend.py', 'mofile.py']
45         r["babel/messages"] = map(lambda f: os.path.join(os.path.dirname(babel.__file__), "messages", f), others)
46
47         import pytz
48         tzdir = os.path.dirname(pytz.__file__)
49         for root, _, filenames in os.walk(os.path.join(tzdir, "zoneinfo")):
50             base = os.path.join('pytz', root[len(tzdir) + 1:])
51             r[base] = [os.path.join(root, f) for f in filenames]
52
53         import docutils
54         dudir = os.path.dirname(docutils.__file__)
55         for root, _, filenames in os.walk(dudir):
56             base = os.path.join('docutils', root[len(dudir) + 1:])
57             r[base] = [os.path.join(root, f) for f in filenames if not f.endswith(('.py', '.pyc', '.pyo'))]
58
59     return r.items()
60
61 def gen_manifest():
62     file_list="\n".join(data())
63     open('MANIFEST','w').write(file_list)
64
65 if os.name == 'nt':
66     sys.path.append("C:\Microsoft.VC90.CRT")
67
68 def py2exe_options():
69     if os.name == 'nt':
70         import py2exe
71         return {
72             "console" : [ { "script": "openerp-server", "icon_resources": [(1, join("install","openerp-icon.ico"))], }],
73             'options' : {
74                 "py2exe": {
75                     "skip_archive": 1,
76                     "optimize": 0, # keep the assert running, because the integrated tests rely on them.
77                     "dist_dir": 'dist',
78                     "packages": [ "DAV", "HTMLParser", "PIL", "asynchat", "asyncore", "commands", "dateutil", "decimal", "docutils", "email", "encodings", "imaplib", "jinja2", "lxml", "lxml._elementpath", "lxml.builder", "lxml.etree", "lxml.objectify", "mako", "openerp", "poplib", "pychart", "pydot", "pyparsing", "pytz", "reportlab", "select", "simplejson", "smtplib", "uuid", "vatnumber", "vobject", "xml", "xml.dom", "yaml", ],
79                     "excludes" : ["Tkconstants","Tkinter","tcl"],
80                 }
81             }
82         }
83     else:
84         return {}
85
86 execfile(join(os.path.dirname(__file__), 'openerp', 'release.py'))
87
88 # Notes for OpenERP developer on windows:
89 #
90 # To setup a windows developer evironement install python2.7 then pip and use
91 # "pip install <depencey>" for every dependency listed below.
92 #
93 # Dependecies that requires DLLs are not installable with pip install, for
94 # them we added comments with links where you can find the installers.
95 #
96 # OpenERP on windows also require the pywin32, the binary can be found at
97 # http://pywin32.sf.net
98 #
99 # Both python2.7 32bits and 64bits are known to work.
100
101 setuptools.setup(
102       name             = 'openerp',
103       version          = version,
104       description      = description,
105       long_description = long_desc,
106       url              = url,
107       author           = author,
108       author_email     = author_email,
109       classifiers      = filter(None, classifiers.split("\n")),
110       license          = license,
111       scripts          = ['openerp-server'],
112       data_files       = data(),
113       packages         = setuptools.find_packages(),
114       dependency_links = ['http://download.gna.org/pychart/'],
115       #include_package_data = True,
116       install_requires = [
117           'pychart', # not on pypi, use: pip install http://download.gna.org/pychart/PyChart-1.39.tar.gz
118           'babel',
119           'docutils',
120           'feedparser',
121           'gdata',
122           'Jinja2',
123           'lxml', # windows binary http://www.lfd.uci.edu/~gohlke/pythonlibs/
124           'mako',
125           'mock',
126           'PIL', # windows binary http://www.lfd.uci.edu/~gohlke/pythonlibs/
127           'psutil', # windows binary code.google.com/p/psutil/downloads/list
128           'psycopg2 >= 2.2',
129           'pydot',
130           'python-dateutil < 2',
131           'python-ldap', # optional
132           'python-openid',
133           'pytz',
134           'pywebdav < 0.9.8',
135           'pyyaml',
136           'reportlab', # windows binary pypi.python.org/pypi/reportlab
137           'simplejson',
138           'unittest2',
139           'vatnumber',
140           'vobject',
141           'werkzeug',
142           'xlwt',
143       ],
144       extras_require = {
145           'SSL' : ['pyopenssl'],
146       },
147       tests_require = ['unittest2'],
148       **py2exe_options()
149 )
150
151
152 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: