forked from Yelp/paasta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
85 lines (80 loc) · 3.32 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
78
79
80
81
82
83
84
#!/usr/bin/python
# Copyright 2015 Yelp Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'paasta-tools',
# Don't bump version manually. See `make release` docs in ./Makefile
version = '0.16.0',
provides = ["paasta_tools"],
author = 'Kyle Anderson',
author_email = '[email protected]',
description = 'Tools for Yelps SOA infrastructure',
packages = find_packages(exclude=["tests", "scripts"]),
setup_requires = ['setuptools'],
include_package_data=True,
install_requires = [
'argcomplete >= 0.8.1',
# argparse is pinned to 1.2.1 since it comes in the core python2.7 libs and pip can't seem to override it
'argparse == 1.2.1',
'chronos-python == 0.34.0',
# Don't update this unless you have confirmed the client works with the Docker version deployed on PaaSTA servers
'docker-py == 1.2.3',
'dulwich == 0.10.0',
'humanize >= 0.5.1',
'httplib2 >= 0.9, <= 1.0',
'isodate >= 0.5.0',
'kazoo >= 2.0.0',
'marathon >= 0.7.3',
'mesos.cli == 0.1.3',
'ordereddict >= 1.1',
'path.py >= 8.1',
'pysensu-yelp >= 0.2.2',
'python-dateutil >= 2.4.0',
'requests == 2.6.2',
'requests-cache >= 0.4.10, <= 0.5.0',
'sensu-plugin >= 0.1.0',
'service-configuration-lib >= 0.9.2',
'tron == 0.6.1.1',
'yelp_clog >= 2.2.0',
],
scripts = [
'paasta_tools/am_i_mesos_leader.py',
'paasta_tools/check_marathon_services_replication.py',
'paasta_tools/check_mesos_resource_utilization.py',
'paasta_tools/cleanup_chronos_jobs.py',
'paasta_tools/check_chronos_jobs.py',
'paasta_tools/cleanup_marathon_jobs.py',
'paasta_tools/deploy_chronos_jobs',
'paasta_tools/deploy_marathon_services',
'paasta_tools/generate_all_deployments',
'paasta_tools/generate_deployments_for_service.py',
'paasta_tools/generate_services_file.py',
'paasta_tools/generate_services_yaml.py',
'paasta_tools/list_chronos_jobs.py',
'paasta_tools/list_marathon_service_instances.py',
'paasta_tools/monitoring/check_classic_service_replication.py',
'paasta_tools/monitoring/check_synapse_replication.py',
'paasta_tools/paasta_cli/paasta_cli.py',
'paasta_tools/paasta_cli/paasta_tabcomplete.sh',
'paasta_tools/paasta_execute_docker_command.py',
'paasta_tools/paasta_metastatus.py',
'paasta_tools/paasta_serviceinit.py',
'paasta_tools/setup_chronos_job.py',
'paasta_tools/setup_marathon_job.py',
'paasta_tools/synapse_srv_namespaces_fact.py',
],
package_data = {'': ['paasta_cli/fsm/templates/*.tmpl']},
)