"Fossies" - the Fresh Open Source Software Archive

Member "btn4ws-0.7.0/setup.py" (5 Jan 2008, 1228 Bytes) of package /linux/privat/old/btn4ws-0.7.0.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Python source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. For more information about "setup.py" see the Fossies "Dox" file reference documentation.

    1 #!/usr/bin/env python
    2 # -*- coding: utf-8 -*-
    3 # This is the distutils setup file for btn4ws.
    4 #
    5 # Copyright (c) 2007 Jan Dittberner <jan@dittberner.info>
    6 #
    7 # This file is part of btn4ws.
    8 #
    9 # btn4ws is free software; you can redistribute it and/or modify
   10 # it under the terms of the GNU General Public License as published by
   11 # the Free Software Foundation; either version 2 of the License, or
   12 # (at your option) any later version.
   13 #
   14 # btn4ws is distributed in the hope that it will be useful,
   15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
   16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   17 # GNU General Public License for more details.
   18 #
   19 # You should have received a copy of the GNU General Public License
   20 # along with btn4ws; if not, write to the Free Software
   21 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
   22 #
   23 # version: $Id: setup.py 15 2008-01-05 22:23:09Z jan $
   24 #
   25 
   26 from distutils.core import setup
   27 
   28 setup(name='btn4ws',
   29       version='0.7.0',
   30       description='Buttons for websites GIMP plugin',
   31       author='Jan Dittberner',
   32       author_email='jan@dittberner.info',
   33       url='http://www.dittberner.info/project/btn4ws/',
   34       py_modules=['btn4ws']
   35       )