forked from ployground/ploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.02 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
36
37
38
39
40
from setuptools import setup
import os
version = "0.12"
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
HISTORY = open(os.path.join(here, 'HISTORY.rst')).read()
install_requires = [
'setuptools',
'boto >= 2.13',
'Fabric >= 1.3.0',
'paramiko <= 1.9.0',
'lazy']
try:
import argparse
argparse # make pyflakes happy...
except ImportError:
install_requires.append('argparse >= 1.1')
setup(
version=version,
description="A script allowing to setup Amazon EC2 instances through configuration files.",
long_description=README + "\n\n" + HISTORY,
name="mr.awsome",
author='Florian Schulze',
author_email='[email protected]',
url='http://github.com/fschulze/mr.awsome',
include_package_data=True,
zip_safe=False,
packages=['mr'],
namespace_packages=['mr'],
install_requires=install_requires,
entry_points="""
[console_scripts]
aws = mr.awsome:aws
assh = mr.awsome:aws_ssh
""")