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