-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 967 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 967 Bytes
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
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'],
install_requires=[
'dbus-python',
],
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',
]
)