-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (28 loc) · 959 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
from setuptools import setup, find_packages
import codecs
setup(
name="OpenvStorage Flocker driver",
packages=[
"openvstorage_flocker_plugin"
],
package_data={
"openvstorage_flocker_plugin": ["config/*"],
},
version="0.1",
description="OpenvStorage Plugin for ClusterHQ/Flocker.",
author="Chrysostomos Nanakos",
author_email="cnanakos@openvstorage.com",
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='openvstorage, backend, plugin, flocker, docker, python',
url="https://github.com/openvstorage/openvstorage-flocker-driver",
install_requires=[]
)