-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
59 lines (48 loc) · 1.51 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
"""
Lightflow
---------
Lightflow is a lightweight, distributed workflow system.
It is based on a directed acyclic graph structure, with tasks as nodes and arbitrary data
flowing between tasks.
"""
from setuptools import setup, find_packages
import re
with open('lightflow/version.py') as file:
version = re.search(r"__version__ = '(.*)'", file.read()).group(1)
setup(
name='Lightflow',
version=version,
description='A lightweight, distributed workflow system',
long_description=__doc__,
url='https://github.com/AustralianSynchrotron/Lightflow',
author='The Australian Synchrotron Software Group',
author_email='python@synchrotron.org.au',
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Scientific/Engineering',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(exclude=['tests']),
install_requires=[
'celery>=4.2.1',
'Click>=7.0',
'colorlog>=4.0.2',
'networkx>=2.2',
'pymongo>=3.7.2',
'pytz>=2018.7',
'redis>=3.0.1',
'ruamel.yaml>=0.15.83',
'cloudpickle>=0.6.1'
],
entry_points={
'console_scripts': [
'lightflow=lightflow.scripts.cli:cli',
],
},
)