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