Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# spotinst-cli
spotinst-cli is is an interactive command line tool which allows you to to control your spotinst groups and instances.

### Installation
```
pip install spotinstcli
```

### Usage

spotinst-cli has the following flags -
Expand Down Expand Up @@ -64,13 +69,4 @@ Set variables like:
SpotInst account ids can be found in the web console under settings/account for each of your accounts.
There is currently no way to pull account ids from the SpotInst API.

### Installation
```
pip install spotinst-cli
```
OR
```
git clone git@github.com:giladsh1/spotinst-cli.git
pip install $(pwd)/requirements.txt --user --upgrade
ln -s /usr/local/bin/spotinst-cli $(pwd)spotinst-cli/spotinst-cli
```

41 changes: 25 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,36 @@
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:
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",
name='spotinstcli',
version='0.1.3',
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",
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",
'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"],
keywords='spotinst cli aws spotinst-cli',
packages=find_packages(),
entry_points={
'console_scripts': [
'spotinst-cli = spotinstcli:main',
]
},
install_requires = [
"prettytable",
"requests"
]
'prettytable',
'requests',
'PyInquirer',
'clint',
'wcwidth'
],
include_package_data=True
)
Loading