forked from univention/python-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (55 loc) · 2.11 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Author: Andreas Büsching <[email protected]>
#
# package's setup.py
#
# Copyright (C) 2004, 2005, 2006
# Andreas Büsching <[email protected]>
#
# This library is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version
# 2.1 as published by the Free Software Foundation.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA
"""A generic notifier/event scheduler abstraction
pyNotifier provides an implementation of a notifier/event scheduler and is
capable of wrapping other notifier implementations of GTK+, Qt and wxWindows.
This enables library developers to write code that may be used in applications
with """
from distutils.core import setup
execfile( 'notifier/version.py' )
classifiers = """\
Development Status :: 5 - Production/Stable
Environment :: Console
Environment :: X11 Applications :: GTK
Environment :: X11 Applications :: Qt
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License (GPL)
Programming Language :: Python
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: Unix
"""
doclines = __doc__.split( '\n' )
setup( name = 'python-notifier',
version = VERSION,
license = 'LGPLv2',
description = doclines[ 0 ],
long_description = '\n'.join( doclines[ 2 : ] ),
author = 'Andreas Büsching',
author_email = '[email protected]',
url = 'http://blog.bitkipper.net/?page_id=51',
download_url = 'http://blog.bitkipper.net/?page_id=51',
platforms = [ 'any', ],
classifiers = filter( None, classifiers.split( '\n' ) ),
packages = [ 'notifier', ],
)