forked from dptech-corp/dflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.03 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
from setuptools import setup
with open('VERSION', 'r') as f:
VERSION = f.read()
with open('README.md', 'r') as f:
LONG_DESCRIPTION = f.read()
setup(
name='pydflow',
version=VERSION,
description='Dflow is a Python framework for constructing scientific '
'computing workflows employing Argo Workflows as the workflow engine.',
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Xinzijian Liu",
license="LGPLv3",
package_dir={'': 'src'},
packages=[
"dflow",
"dflow/python",
"dflow/client",
"dflow/plugins",
],
python_requires='>=3.6',
install_requires=[
"six",
"python-dateutil",
"urllib3",
"certifi",
"typeguard<3",
"argo-workflows==5.0.0",
"jsonpickle",
"minio",
"kubernetes",
"pyyaml",
"cloudpickle==2.2.0",
"requests",
"tqdm",
],
entry_points={
'console_scripts': ['dflow=dflow.main:main'],
},
)