forked from Parsl/parsl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·76 lines (71 loc) · 2.55 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
from setuptools import setup, find_packages
with open('parsl/version.py') as f:
exec(f.read())
with open('requirements.txt') as f:
install_requires = f.readlines()
extras_require = {
'monitoring' : [
'sqlalchemy>=1.3.0,!=1.3.4,<1.4',
'sqlalchemy_utils',
'pydot',
'networkx',
'Flask>=1.0.2',
'flask_sqlalchemy',
'pandas<1.4',
'plotly',
'python-daemon'
],
'aws' : ['boto3'],
'kubernetes' : ['kubernetes'],
'oauth_ssh' : ['oauth-ssh>=0.9'],
'extreme_scale' : ['mpi4py'],
'docs' : ['nbsphinx', 'sphinx_rtd_theme', 'ipython'],
'google_cloud' : ['google-auth', 'google-api-python-client'],
'gssapi' : ['python-gssapi'],
'azure' : ['azure<=4', 'msrestazure'],
'workqueue': ['work_queue'],
'flux': ['pyyaml', 'cffi', 'jsonschema'],
}
extras_require['all'] = sum(extras_require.values(), [])
setup(
name='parsl',
version=VERSION,
description='Simple data dependent workflows in Python',
long_description='Simple parallel workflows system for Python',
url='https://github.com/Parsl/parsl',
author='The Parsl Team',
author_email='parsl@googlegroups.com',
license='Apache 2.0',
download_url='https://github.com/Parsl/parsl/archive/{}.tar.gz'.format(VERSION),
include_package_data=True,
package_data={'parsl': ['py.typed']},
packages=find_packages(),
python_requires=">=3.7.0",
install_requires=install_requires,
scripts = ['parsl/executors/high_throughput/process_worker_pool.py',
'parsl/executors/extreme_scale/mpi_worker_pool.py',
'parsl/executors/cylon/cylon_worker_pool.py',
'parsl/executors/low_latency/lowlatency_worker.py',
'parsl/executors/workqueue/exec_parsl_function.py',
],
extras_require=extras_require,
classifiers=[
# Maturity
'Development Status :: 3 - Alpha',
# Intended audience
'Intended Audience :: Developers',
# Licence, must match with licence above
'License :: OSI Approved :: Apache Software License',
# Python versions supported
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords=['Workflows', 'Scientific computing'],
entry_points={'console_scripts':
[
'parsl-globus-auth=parsl.data_provider.globus:cli_run',
'parsl-visualize=parsl.monitoring.visualization.app:cli_run',
]}
)