Merge 'upstream/saas-4' into saas-4
[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', 'plural.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": [
79                         "HTMLParser",
80                         "PIL",
81                         "asynchat", "asyncore",
82                         "commands",
83                         "dateutil",
84                         "decimal",
85                         "docutils",
86                         "email",
87                         "encodings",
88                         "imaplib",
89                         "jinja2",
90                         "lxml", "lxml._elementpath", "lxml.builder", "lxml.etree", "lxml.objectify",
91                         "mako",
92                         "markupsafe",   # dependence of jinja2 and mako
93                         "mock",
94                         "openerp",
95                         "poplib",
96                         "psutil", 
97                         "pychart",
98                         "pydot",
99                         "pyparsing",
100                         "pytz",
101                         "reportlab",
102                         "requests",
103                         "select",
104                         "simplejson",
105                         "smtplib",
106                         "uuid",
107                         "vatnumber",
108                         "vobject",
109                         "win32service", "win32serviceutil",
110                         "xlwt",
111                         "xml", "xml.dom",
112                         "yaml",
113                     ],
114                     "excludes" : ["Tkconstants","Tkinter","tcl"],
115                 }
116             }
117         }
118     else:
119         return {}
120
121 execfile(join(os.path.dirname(__file__), 'openerp', 'release.py'))
122
123 # Notes for OpenERP developer on windows:
124 #
125 # To setup a windows developer evironement install python2.7 then pip and use
126 # "pip install <depencey>" for every dependency listed below.
127 #
128 # Dependecies that requires DLLs are not installable with pip install, for
129 # them we added comments with links where you can find the installers.
130 #
131 # OpenERP on windows also require the pywin32, the binary can be found at
132 # http://pywin32.sf.net
133 #
134 # Both python2.7 32bits and 64bits are known to work.
135
136 setuptools.setup(
137       name             = 'openerp',
138       version          = version,
139       description      = description,
140       long_description = long_desc,
141       url              = url,
142       author           = author,
143       author_email     = author_email,
144       classifiers      = filter(None, classifiers.split("\n")),
145       license          = license,
146       scripts          = ['openerp-server'],
147       data_files       = data(),
148       packages         = setuptools.find_packages(),
149       dependency_links = ['http://download.gna.org/pychart/'],
150       #include_package_data = True,
151       install_requires = [
152           'pychart', # not on pypi, use: pip install http://download.gna.org/pychart/PyChart-1.39.tar.gz
153           'babel >= 1.0',
154           'docutils',
155           'feedparser',
156           'gdata',
157           'gevent',
158           'psycogreen',
159           'Jinja2',
160           'lxml', # windows binary http://www.lfd.uci.edu/~gohlke/pythonlibs/
161           'mako',
162           'mock',
163           'pillow', # windows binary http://www.lfd.uci.edu/~gohlke/pythonlibs/
164           'psutil', # windows binary code.google.com/p/psutil/downloads/list
165           'psycopg2 >= 2.2',
166           'pydot',
167           'pyparsing < 2',
168           'pyserial',
169           'python-dateutil < 2',
170           'python-ldap', # optional
171           'python-openid',
172           'pytz',
173           'pyusb >= 1.0.0b1',
174           'pywebdav < 0.9.8',
175           'pyyaml',
176           'qrcode',
177           'reportlab', # windows binary pypi.python.org/pypi/reportlab
178           'requests',
179           'simplejson',
180           'unittest2',
181           'vatnumber',
182           'vobject',
183           'werkzeug',
184           'xlwt',
185       ],
186       extras_require = {
187           'SSL' : ['pyopenssl'],
188       },
189       tests_require = ['unittest2', 'mock'],
190       **py2exe_options()
191 )
192
193
194 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: