forked from ployground/ploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 799 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
from setuptools import setup
import os
version = "0.9"
setup(
version=version,
description="A script allowing to setup Amazon EC2 instances through configuration files.",
long_description=open("README.txt").read() + "\n\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
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=[
'setuptools',
'boto >= 1.9b',
'Fabric >= 0.9.0',
'argparse >= 1.1',
],
entry_points="""
[console_scripts]
aws = mr.awsome:aws
assh = mr.awsome:aws_ssh
""",
)