-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (29 loc) · 881 Bytes
/
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
import setuptools
from setuptools import setup, find_packages
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="spotinst-cli",
version="0.1",
description="CLI tool for interacting with Spotinst AWS elasticgroups",
long_description=long_description,
url="https://github.com/giladsh1/spotinst-cli",
author="Gilad Sharaby",
author_email="giladsh1@gmail.com",
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="spotinst cli aws",
scripts=["/usr/local/bin/spotinst-cli"],
install_requires = [
"prettytable",
"requests"
]
)