forked from thefactory/autoscale-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 888 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
import sys
from setuptools import setup
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(name='autoscale',
version="0.0.1",
description='Extensible library to manage scaling logic and actions',
author='Mike Babineau',
author_email='[email protected]',
install_requires=[ 'requests>=2.0.0', 'boto>=2.1.0' ],
url='https://github.com/thefactory/autoscale-python',
license='MIT',
platforms='Posix; MacOS X; Windows',
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'],
**extra
)