|
Revision dbba0d71280f4ff436a0790befbda803e5dfbb01, 1.2 KB
(checked in by Jan Dittberner <jan@…>, 3 years ago)
|
|
update version and copyright
- update copyright years to include 2009 (fixes #22)
- checkin using LC_ALL=C and LANG=C (fixes #21)
- add a setup.cfg to make dev builds easily available
|
-
Property mode set to
100644
|
| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: utf-8 -*- |
|---|
| 3 | # This is the distutils setup file for btn4ws. |
|---|
| 4 | # |
|---|
| 5 | # Copyright (c) 2007-2009 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$ |
|---|
| 24 | # |
|---|
| 25 | |
|---|
| 26 | from distutils.core import setup |
|---|
| 27 | |
|---|
| 28 | setup(name='btn4ws', |
|---|
| 29 | version='0.8.0.1', |
|---|
| 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 | ) |
|---|