File: setup.py

package info (click to toggle)
python-notify2 0.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 160 kB
  • sloc: python: 451; makefile: 145; sh: 7
file content (30 lines) | stat: -rw-r--r-- 908 bytes parent folder | download
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
from distutils.core import setup

# To load the docstring, we need to be able to import dbus, but we don't
# actually use it.
try:
    import dbus
except ImportError:
    import sys
    sys.modules['dbus'] = object()

import notify2
long_description = notify2.__doc__

setup(name='notify2',
      version='0.3.1',
      description='Python interface to DBus notifications',
      long_description=long_description,
      author='Thomas Kluyver',
      author_email='takowl@gmail.com',
      url='https://bitbucket.org/takluyver/pynotify2',
      py_modules=['notify2'],
      classifiers = [
        'License :: OSI Approved :: BSD License',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 3',
        'Topic :: Desktop Environment',
        'Topic :: Software Development :: Libraries :: Python Modules',
        ]
      )