-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
78 lines (69 loc) · 2.05 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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.9.9"
, "option_merge==1.5"
, "input_algorithms==0.5.9"
, "six"
, "pytz"
, "slacker"
, "humanize"
, "argparse"
, "requests"
, "paramiko"
, "radssh==1.1.1"
, "pyrelic==0.8.0"
, "boto==2.48.0"
, "boto3==1.5.20"
, "ruamel.yaml==0.15.87"
, "ultra_rest_client==0.1.4"
, "dnslib==0.9.4"
]
, extras_require =
{ "tests":
[ "noseOfYeti>=1.5.0"
, "nose"
, "mock"
, "moto==1.1.25"
, "coverage"
# 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/delfick/bespin"
, author = "Stephen Moore"
, author_email = "[email protected]"
, description = "Opinionated wrapper around boto that reads yaml"
, license = "MIT"
, keywords = "cloudformation boto"
, classifiers=
[
"Environment :: Console"
, "Intended Audience :: Developers"
, "Intended Audience :: Information Technology"
, "Intended Audience :: System Administrators"
, "License :: OSI Approved :: MIT License"
, "Natural Language :: English"
, "Operating System :: MacOS :: MacOS X"
, "Operating System :: POSIX"
, "Operating System :: POSIX :: Linux"
, "Programming Language :: Python"
, "Programming Language :: Python :: 2"
, "Programming Language :: Python :: 2.7"
, "Programming Language :: Python :: 3"
, "Programming Language :: Python :: 3.5"
, "Programming Language :: Python :: 3.6"
]
)