Skip to content

Commit 75fcf69

Browse files
Add files via upload
Initial commit
1 parent 5b3b7b8 commit 75fcf69

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

Sandbox-API/setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
from setuptools import setup
2+
3+
4+
def readme():
5+
with open('README.rst') as f:
6+
return f.read()
7+
8+
9+
setup(
10+
name='cloudshell_sandboxapi_wrapper',
11+
version='1.0.0',
12+
packages=['cloudshell_sandboxapi_wrapper'],
13+
url='http://www.quali.com',
14+
license='Apache 2.0',
15+
author='sadanand.s',
16+
author_email='sadanand.s@quali.com',
17+
description='Python wrapper for CloudShell Sandbox API',
18+
long_description=readme(),
19+
classifiers=[
20+
'License :: OSI Approved :: Apache Software License',
21+
'Natural Language :: English',
22+
'Programming Language :: Python :: 2.7',
23+
'Programming Language :: Python :: 3.7',
24+
'Programming Language :: Python :: 3.8',
25+
],
26+
install_requires=['requests']
27+
)

0 commit comments

Comments
 (0)