forked from sedouard/scaleio-flocker-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (31 loc) · 1.21 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
# Copyright 2015 EMC Corporation
from setuptools import setup, find_packages
import codecs # To use a consistent encoding
from os import path
# Get the long description from the relevant file
with codecs.open('DESCRIPTION.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name='scaleio_flocker_driver',
version='1.0',
description='EMC ScaleIO Backend Plugin for ClusterHQ/Flocker ',
long_description=long_description,
author='Ryan Wallner',
author_email='[email protected]',
url='https://github.com/emccorp/scaleio-flocker-driver',
license='Apache 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
# Python versions supported
'Programming Language :: Python :: 2.7',
],
keywords='backend, plugin, flocker, docker, python',
packages=find_packages(exclude=['test*']),
install_requires = ['scaleio-py'],
data_files=[('/etc/flocker/', ['example_sio_agent.yml']),
('/etc/flocker/', ['scaleio_test.config'])]
)