forked from delfick/bespin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (51 loc) · 1.37 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup, find_packages
from bespin import VERSION
setup(
name = "bespin"
, version = VERSION
, packages = ['bespin'] + ['bespin.%s' % pkg for pkg in find_packages('bespin')]
, include_package_data = True
, install_requires =
[ "delfick_app==0.7.3"
, "option_merge==0.9.9.7"
, "input_algorithms==0.4.5.4"
, "six"
, "pytz"
, "slacker"
, "humanize"
, "argparse"
, "requests"
, "paramiko"
, "radssh==1.0.5"
, "pyrelic==0.8.0"
, "boto==2.38.0"
, "boto3==1.2.3"
, "pyYaml==3.10"
, "ultra_rest_client==0.1.4"
, "FileChunkIO==1.6"
, "dnslib==0.9.4"
]
, extras_require =
{ "tests":
[ "noseOfYeti>=1.5.0"
, "nose"
, "mock"
, "moto"
# Need to ensure httpretty is not 0.8.7
# To prevent an infinite loop in python3 tests
, "httpretty==0.8.6"
]
}
, entry_points =
{ 'console_scripts' :
[ 'bespin = bespin.executor:main'
]
}
# metadata for upload to PyPI
, url = "https://github.com/realestate-com-au/bespin"
, author = "Stephen Moore"
, author_email = "[email protected]"
, description = "Opinionated wrapper around boto that reads yaml"
, license = "MIT"
, keywords = "cloudformation boto"
)