-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 816 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 816 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages
from distutils.core import setup
setup(
author=u'Matt Cowger & Magnus Nilson',
author_email='matt@cowger.us',
name='PythonScale',
description='Python interface to ScaleIO 1.3 REST API',
version="0.1",
url='https://github.com/swevm/scaleio_sdk/',
license='Apache License',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
open("requirements.txt").readlines(),
],
)