forked from spotinst/spotinst-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (31 loc) · 1.17 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
# Always prefer setuptools over distutils
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='Spotinst',
version='1.0.24-crittercism',
description='A Python SDK for Spotinst',
long_description='This SDK will allow you to manage your resources in Spotinst easily with Python',
# The project's main homepage.
url='https://github.com/spotinst/spotinst-sdk-python',
# Author details
author='Spotinst',
author_email='service@spotinst.com',
# Choose your license
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
],
keywords='spotinst spot instances aws ec2 cloud infrastructure development elastigroup',
packages=["spotinst"],
install_requires=['requests']
)