This repository has been archived by the owner on Feb 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
44 lines (40 loc) · 1.49 KB
/
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
37
38
39
40
41
42
43
44
import os
import sys
import setuptools
if sys.version_info[0] < 3:
from codecs import open
def local_file(name):
return os.path.relpath(os.path.join(os.path.dirname(__file__), name))
README = local_file("README.rst")
with open(local_file("src/stratisd_client_dbus/_version.py")) as o:
exec(o.read())
setuptools.setup(
name='stratisd-client-dbus',
version=__version__,
author='Anne Mulhern',
author_email='amulhern@redhat.com',
description='transforms values into properly wrapped dbus-python objects',
long_description=open(README, encoding='utf-8').read(),
platforms=['Linux'],
license='Apache 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires = [
'dbus-client-gen>=0.2',
'dbus-python-client-gen>=0.6',
],
package_dir={"": "src"},
packages=setuptools.find_packages("src"),
url="https://github.com/stratis-storage/stratisd-client-dbus"
)