forked from swevm/scaleio-py
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (29 loc) · 932 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages
from distutils.core import setup
# requests 2.4.3 and 2.5.1 is known to work. Not sure about 2.5.1+
install_reqs =[
'requests>=2.4.3',
'requests-toolbelt==0.3.1',
'wsgiref==0.1'
]
setup(
author='Magnus Nilsson',
author_email='[email protected]',
name='ScaleIO-py',
description='Python interface to ScaleIO 1.31+ REST API',
version="0.4.0-0",
url='https://github.com/swevm/scaleio-py/',
license='Apache License',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=install_reqs,
)