-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·32 lines (28 loc) · 953 Bytes
/
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
#!/usr/bin/env python
'''
Created on Nov 6, 2011
@author: hugosenari
'''
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(name='pydbusdecorator',
version='2.0',
description='Python decorator for dbus interface client definition',
author='hugosenari',
author_email='[email protected]',
url='https://github.com/hugosenari/pydbusdecorator',
keywords = ["dbus"],
packages=('dbusdecorator',),
requires=(),
license = "GPL",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4"
],
long_description = readme
)