-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
71 lines (67 loc) · 2.18 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
# stdlib imports
from setuptools import find_packages
from setuptools import setup
try:
with open('README.rst') as readme_file:
readme = readme_file.read()
except IOError:
# README is not always available at the time this file is imported. This
# really only applies during an initial container build when we copy in
# setup.py but not the README. This is mostly to help with caching and
# keeping the time required to run the tests to a minimum. This should never
# make it into an actual build or release package.
readme = "Not Available"
setup(
name='shpkpr',
version='4.1.2',
description='shpkpr is a command-line tool designed to manage applications running on Marathon',
long_description=readme,
author='ShopKeep.com Inc.',
author_email='[email protected]',
url='https://github.com/shopkeep/shpkpr',
packages=find_packages(),
include_package_data=True,
install_requires=[
'PyYAML>=3.10.0',
'cached-property>=1.3.0, <2',
'chronos-python>=1.1.0',
'click>=6.0, <7',
'docker>=3.0.0',
'hvac>=0.2.17',
'jinja2>=2.6, <3',
'jsonschema>=2.6, <3',
'python-slugify>=1.2.4',
'six>=1.11.0',
'requests>=2.4.2',
],
license='MIT',
zip_safe=False,
keywords='shpkpr mesos marathon chronos',
classifiers=[
"Development Status :: 5 - Production/Stable",
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
"Programming Language :: Python",
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
"Programming Language :: Python :: Implementation :: PyPy",
],
entry_points='''
[console_scripts]
shpkpr=shpkpr.cli.entrypoint:cli
''',
setup_requires=[
'pytest-runner',
],
tests_require=[
'freezegun',
'mock',
'pytest',
'responses',
],
)