-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
65 lines (56 loc) · 1.7 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
try:
from distutils.core import setup # , Extension
from setuptools import find_packages, findall
except ImportError:
print ("Please install Distutils and setuptools"
" before installing this package")
raise
setup(
name='scheduler',
version='1.0.0',
description=('A DAG-based job scheduler for performing work with complex'
' dependency requirements.'),
long_description="Check the project homepage for details",
keywords=['scheduler', 'dag', 'directed acyclic graph', 'graph', 'data',
'dependency'],
author='Sailthru Data Science Team',
author_email='[email protected]',
url='https://github.com/sailthru/scheduler',
packages=find_packages(),
scripts=['./bin/scheduler-submit'],
data_files=[
('conf', findall('conf')),
('scheduler/examples', findall('scheduler/examples'))
],
install_requires = [
'kazoo>=1.3.1',
'networkx>=1.8.1',
'ujson>=1.33',
'argparse>=1.1',
'pygraphviz>=1.2',
'argparse_tools>=1.0.0',
],
tests_require=[
'nose>=1.3.3',
'colorlog>=2.2.0',
'pyflakes>=0.8.1',
'pep8>=1.5.6',
],
test_suite="nose.main",
extras_require={
'pyspark': ['pyspark'],
'redis': ['redis', 'hiredis']
},
# include_package_data = True,
zip_safe = False,
# Include code that isn't pure python (like c stuff)
# ext_modules=[Extension('foo', ['foo.c'])]
entry_points = {
'console_scripts': [
'scheduler = scheduler.__main__:go',
],
'setuptools.installation': [
'eggsecutable = scheduler.__main__:go',
],
},
)