-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (39 loc) · 966 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
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
REQUIREMENTS = [
'boto >= 2.29.0',
'requests >= 2.6.0',
'mock >= 1.0.1',
'nose >= 1.3.4',
'tox >= 1.9.0',
'flake8==2.4.0'
]
KEYWORDS = [
'ec2',
'aws',
'instance',
]
setup(
name='ec2-handler',
version='0.0.1',
description='ec2-handler',
long_description=README,
author='Richard Pappalardo',
author_email='[email protected]',
url='https://github.com/rpappalax/ec2-handler',
license="MIT",
install_requires=REQUIREMENTS,
keywords=KEYWORDS,
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
],
entry_points={
'console_scripts': ['ec2 = ec2_handler.ec2_handler:main']
},
)