-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 890 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 890 Bytes
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
import setuptools
from setuptools import setup, find_packages
readme = open('README.md').read()
requires = [
"spotinst_sdk",
"terminaltables",
"pyyaml<5"
]
setup(
name="elasticgroup-cli",
version="0.5",
description="CLI for Spotinst Elasticgroups",
long_description=readme,
url="https://github.com/amelbakry/elasticgroup-cli",
author="Ahmed ElBakry",
author_email="eng.ahmed.elbakry@gmail.com",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="spotinst elasticgroup spot aws",
install_requires = requires,
data_files=[
('/usr/local/bin/', ['./elasticgroup-cli'])
]
)