This repository has been archived by the owner on Jul 20, 2023. It is now read-only.
forked from pinterest/pinball
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
82 lines (79 loc) · 2.26 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
#!/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',
author_email='pawel@pinterest.com',
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.8.0',
'Django==1.11.29',
'guppy==0.1.10',
'mock==0.8.0',
'MySQL-python==1.2.3',
'oauth2client==1.2',
'pycrypto==2.6',
'pydot==1.0.28',
'python-dateutil==1.5',
'PyTrie==0.1',
'pytz==2013b',
'pyyaml==5.1',
'qds_sdk==1.3.0',
'thrift==0.8.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',
)