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