File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments