This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 130
/
setup.py
84 lines (81 loc) · 2.39 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/env python
# -*- coding: utf-8 -*-
from pinball import __version__
from setuptools import setup
setup(
name='pinball',
version=__version__,
description='Workflow manager and scheduler',
author='Pawel Garbacki, Changshu Liu',
author_email='[email protected], [email protected]',
url='https://github.com/pinterest/pinball',
packages=[
'pinball',
'pinball.authentication',
'pinball.common',
'pinball.config',
'pinball.master',
'pinball.master.thrift_lib',
'pinball.parser',
'pinball.persistence',
'pinball.scheduler',
'pinball.tools',
'pinball.ui',
'pinball.workflow',
'pinball_ext',
'pinball_ext.common',
'pinball_ext.examples',
'pinball_ext.executor',
'pinball_ext.job',
'pinball_ext.workflow',
'tests',
'tests.pinball',
'tests.pinball.authentication',
'tests.pinball.config',
'tests.pinball.master',
'tests.pinball.parser',
'tests.pinball.persistence',
'tests.pinball.scheduler',
'tests.pinball.tools',
'tests.pinball.ui',
'tests.pinball.workflow',
'tests.pinball_ext',
'tests.pinball_ext.executor',
'tests.pinball_ext.job',
'tests.pinball_ext.workflow',
],
package_dir={'pinball': 'pinball'},
include_package_data=True,
install_requires=[
'argparse>=1.2.1',
'boto>=2.49.0',
'Django>=1.5.4,<=1.6.0',
'django-sslify>=0.2.7',
'google_compute_engine>=2.8.13',
'guppy>=0.1.10',
'mock>=0.8.0',
'MySQL-python>=1.2.3',
'oauth2client>=1.2',
'pycryptodomex>=3.7.2',
'pydot>=1.2.3',
'python-dateutil>=2.6.1',
'PyTrie>=0.3',
'pytz>=2013b',
'pyyaml>=4.2b1',
'qds_sdk>=1.9.0',
'thrift>=0.10.0',
'tox>=1.6.1',
],
license="Apache 2.0",
zip_safe=False,
keywords='pinball, workflow manager, batch, job, hadoop, emr, qubole',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: Apache Software License',
'Topic :: System :: Distributed Computing',
],
test_suite='tests',
)