[FIX] packaging: some changes for windows packaging.
[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, isfile
25
26 # List all data files
27 def data():
28     files = []
29     for root, dirnames, filenames in os.walk('openerp'):
30         for filename in filenames:
31             if not re.match(r'.*(\.pyc|\.pyo|\~)$',filename):
32                 files.append(os.path.join(root, filename))
33     d = {}
34     for v in files:
35         k=os.path.dirname(v)
36         if k in d:
37             d[k].append(v)
38         else:
39             d[k]=[v]
40     r = d.items()
41     if os.name == 'nt':
42         r.append(("Microsoft.VC90.CRT", glob.glob('C:\Microsoft.VC90.CRT\*.*')))
43     return r
44
45 def gen_manifest():
46     file_list="\n".join(data())
47     open('MANIFEST','w').write(file_list)
48
49 if os.name == 'nt':
50     sys.path.append("C:\Microsoft.VC90.CRT")
51
52 def py2exe_options():
53     if os.name == 'nt':
54         import py2exe
55         return {
56             "console" : [ { "script": "openerp-server", "icon_resources": [(1, join("install","openerp-icon.ico"))], }],
57             'options' : {
58                 "py2exe": {
59                     "skip_archive": 1,
60                     "optimize": 2,
61                     "dist_dir": 'dist',
62                     "packages": [ "DAV", "HTMLParser", "PIL", "asynchat", "asyncore", "commands", "dateutil", "decimal", "email", "encodings", "imaplib", "lxml", "lxml._elementpath", "lxml.builder", "lxml.etree", "lxml.objectify", "mako", "openerp", "poplib", "pychart", "pydot", "pyparsing", "reportlab", "select", "simplejson", "smtplib", "uuid", "vatnumber", "vobject", "xml", "xml.dom", "yaml", ],
63                     "excludes" : ["Tkconstants","Tkinter","tcl"],
64                 }
65             }
66         }
67     else:
68         return {}
69
70 execfile(join(os.path.dirname(__file__), 'openerp', 'release.py'))
71
72 setuptools.setup(
73       name             = 'openerp',
74       version          = version,
75       description      = description,
76       long_description = long_desc,
77       url              = url,
78       author           = author,
79       author_email     = author_email,
80       classifiers      = filter(None, classifiers.split("\n")),
81       license          = license,
82       scripts          = ['openerp-server'],
83       data_files       = data(),
84       packages         = setuptools.find_packages(),
85       #include_package_data = True,
86       install_requires = [
87         # TODO the pychart package we include in openerp corresponds to PyChart 1.37.
88         # It seems there is a single difference, which is a spurious print in generate_docs.py.
89         # It is probably safe to move to PyChart 1.39 (the latest one).
90         # (Let setup.py choose the latest one, and we should check we can remove pychart from
91         # our tree.) http://download.gna.org/pychart/
92         # TODO  'pychart',
93           'babel',
94           'feedparser',
95           'gdata',
96           'lxml',
97           'mako',
98           'psycopg2',
99           'pydot',
100           'python-dateutil < 2',
101           'python-ldap',
102           'python-openid',
103           'pytz',
104           'pywebdav',
105           'pyyaml',
106           'reportlab',
107           'simplejson',
108           'vatnumber',
109           'vobject',
110           'werkzeug',
111           'zsi',
112       ],
113       extras_require = {
114           'SSL' : ['pyopenssl'],
115       },
116       **py2exe_options()
117 )
118
119
120 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: