X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=win32%2Fsetup.py;h=b06f94bcc2a31fcb6da86c8f857b9628135d3d96;hb=3b643521330363310a330c22aab0de161870939b;hp=d07834ee5b4aede9b48823155db024594f2ce61e;hpb=dbe1e8ca98abebcb6045614d6ced335e3edb9bf6;p=odoo%2Fodoo.git diff --git a/win32/setup.py b/win32/setup.py index d07834e..b06f94b 100644 --- a/win32/setup.py +++ b/win32/setup.py @@ -1,42 +1,35 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved. -# -# $Id$ -# -# WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsability of assessing all potential -# consequences resulting from its eventual inadequacies and bugs -# End users who are looking for a ready-to-use solution with commercial -# garantees and support are strongly adviced to contract a Free Software -# Service Company -# -# This program is Free Software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -############################################################################## -from distutils.core import setup -import py2exe - - -setup(service=["OpenERPServerService"], - options={"py2exe":{"excludes":["Tkconstants","Tkinter","tcl", - "_imagingtk","PIL._imagingtk", - "ImageTk", "PIL.ImageTk", - "FixTk"], - "compressed": 1}} - ) +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from distutils.core import setup +import py2exe + + +setup(service=["OpenERPServerService"], + options={"py2exe":{"excludes":["Tkconstants","Tkinter","tcl", + "_imagingtk","PIL._imagingtk", + "ImageTk", "PIL.ImageTk", + "FixTk"], + "compressed": 1}} + ) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: