You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1000 B
36 lines
1000 B
#!/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 = "linus@lew21.net", |
|
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' |
|
] |
|
)
|
|
|