forked from erans/ec2instancespricing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.09 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# As a double precaution, lock this down to uploads to internal
#from distutils import config
#config.PyPIRCCommand.DEFAULT_REPOSITORY = 'internal'
setup(
name='ec2instancespricing',
packages=[
'ec2instancespricing',
],
version='0.1',
scripts=['ec2instancespricing/ec2instancespricing.py'],
description='Tool to get ec2 instance prices',
author='Eran Sandler',
author_email='[email protected]',
license='Other/Proprietary',
keywords=['ec2', 'pricing', 'cloud'], # arbitrary keywords,
url='https://github.com/erans/ec2instancespricing',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: System :: Systems Administration",
"Topic :: Utilities"
],
install_requires=[],
)