-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
44 lines (43 loc) · 1.37 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='kube-vcloud-flexvolume',
description='VMware vCloud Director flexVolume driver for Kubernetes ',
url='[email protected]:answear/kube-vcloud-flexvolume.git',
author='Piotr Mazurkiewicz',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5'
],
keywords='',
package_dir={'': 'src'},
packages=['flexvolume','vcloud'],
scripts=['src/vcloud-flexvolume'],
install_requires=[
'click',
'bitmath',
'etcd3autodiscover>=1.0.2'
],
extras_require={
':python_version < "3.6"': [
'pyvcloud==20.0.4'
],
':python_version >= "3.6"': [
'pyvcloud==20.0.3'
]
},
dependency_links=[
'git+https://github.com/answear/[email protected]#egg=pyvcloud-20.0.4',
'git+https://github.com/answear/[email protected]#egg=etcd3autodiscover-1.0.2'
],
setup_requires=['setuptools_scm'],
use_scm_version=True,
)