-
Notifications
You must be signed in to change notification settings - Fork 76
/
setup.py
executable file
·36 lines (32 loc) · 1000 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
33
34
35
36
#!/usr/bin/env python3
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
setup(
name = "pydbus",
version = "0.6.0",
description = "Pythonic DBus library",
long_description = readme,
author = "Linus Lewandowski",
author_email = "[email protected]",
url = "https://github.com/LEW21/pydbus",
keywords = "dbus",
license = "LGPLv2+",
packages = ["pydbus"],
package_data = {"": ["LICENSE"]},
package_dir = {"pydbus": "pydbus"},
zip_safe = True,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7'
]
)