-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
63 lines (55 loc) · 1.79 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
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='stolos',
version='2.0.1.dev0',
description=(
'A DAG-based job queueing system and executor for performing work'
' with complex dependency requirements between applications'),
long_description="Check the project homepage for details",
keywords=[
'stolos', 'scheduler', 'dag', 'directed acyclic graph', 'graph',
'data', 'dependency', 'queue', 'queueing system', 'pipeline',
'applications', 'machine learning', 'executor'],
author='Sailthru Data Science Team',
author_email='[email protected]',
url='https://github.com/sailthru/stolos',
packages=find_packages(),
scripts=['./bin/stolos-submit'],
data_files=[
('conf', findall('conf')),
('stolos/examples', findall('stolos/examples'))
],
install_requires=[
'argparse>=1.1',
'argparse_tools>=1.0.5',
'colorlog>=2.2.0',
'kazoo>=1.3.1',
'networkx>=1.8.1',
'simplejson>=3.4.1',
'six>=1.10.0'
],
extras_require={
'pyspark': ['pyspark'],
'redis': ['redis', 'hiredis'],
'testing': ['nose>=1.3.3', 'pep8>=1.5.6', 'pyflakes>=0.8.1'],
'ui': ['pygraphviz>=1.2'],
},
# 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': [
'stolos = stolos.__main__:go',
],
'setuptools.installation': [
'eggsecutable = stolos.__main__:go',
],
},
)