add encoding comment and vim comment
[odoo/odoo.git] / win32 / setup.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################\r
3 #\r
4 # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.\r
5 #\r
6 # $Id$\r
7 #\r
8 # WARNING: This program as such is intended to be used by professional\r
9 # programmers who take the whole responsability of assessing all potential\r
10 # consequences resulting from its eventual inadequacies and bugs\r
11 # End users who are looking for a ready-to-use solution with commercial\r
12 # garantees and support are strongly adviced to contract a Free Software\r
13 # Service Company\r
14 #\r
15 # This program is Free Software; you can redistribute it and/or\r
16 # modify it under the terms of the GNU General Public License\r
17 # as published by the Free Software Foundation; either version 2\r
18 # of the License, or (at your option) any later version.\r
19 #\r
20 # This program is distributed in the hope that it will be useful,\r
21 # but WITHOUT ANY WARRANTY; without even the implied warranty of\r
22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
23 # GNU General Public License for more details.\r
24 #\r
25 # You should have received a copy of the GNU General Public License\r
26 # along with this program; if not, write to the Free Software\r
27 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\r
28 ##############################################################################\r
29 from distutils.core import setup\r
30 import py2exe\r
31 \r
32 \r
33 setup(service=["TinyERPServerService"],\r
34       options={"py2exe":{"excludes":["Tkconstants","Tkinter","tcl",\r
35                                      "_imagingtk","PIL._imagingtk",\r
36                                      "ImageTk", "PIL.ImageTk",\r
37                                      "FixTk"],\r
38                          "compressed": 1}}\r
39       )\r
40
41 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
42