forked from spotinst/spotinst-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (35 loc) · 1.32 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
43
44
45
46
47
48
# Always prefer setuptools over distutils
from codecs import open
from os import path
from setuptools import setup
import spotinst_sdk
here = path.abspath(path.dirname(__file__))
# Get the long description from the README.md file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='spotinst-sdk',
version=spotinst_sdk.__version__,
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='[email protected]',
# 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',
'Programming Language :: Python :: 3.6'
],
keywords='spotinst spot instances aws ec2 cloud infrastructure development elastigroup',
packages=["spotinst_sdk"],
install_requires=['requests', 'PyYaml'],
setup_requires=["pytest-runner"],
tests_require=["pytest"]
)