-
Notifications
You must be signed in to change notification settings - Fork 195
/
setup.py
executable file
·86 lines (81 loc) · 2.87 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
77
78
79
80
81
82
83
84
85
86
from setuptools import find_packages, setup
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.4,<2'
],
'visualization' : [
'pydot',
'networkx>=2.5,<2.6',
'Flask>=1.0.2',
'flask_sqlalchemy',
'pandas<2.2',
'plotly',
'python-daemon'
],
'aws' : ['boto3'],
'kubernetes' : ['kubernetes'],
'oauth_ssh' : ['oauth-ssh>=0.9'],
'docs' : [
'ipython<=8.6.0',
'nbsphinx',
'sphinx>=7.1,<7.2', # 7.2 requires python 3.9+
'sphinx_rtd_theme'
],
'google_cloud' : ['google-auth', 'google-api-python-client'],
'gssapi' : ['python-gssapi'],
'azure' : ['azure<=4', 'msrestazure'],
'workqueue': ['work_queue'],
'flux': ['pyyaml', 'cffi', 'jsonschema'],
'proxystore': ['proxystore'],
'radical-pilot': ['radical.pilot==1.60', 'radical.utils==1.60'],
'ssh': ['paramiko'],
# Disabling psi-j since github direct links are not allowed by pypi
# 'psij': ['psi-j-parsl@git+https://github.com/ExaWorks/psi-j-parsl']
}
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.9.0",
install_requires=install_requires,
scripts = ['parsl/executors/high_throughput/process_worker_pool.py',
'parsl/executors/high_throughput/interchange.py',
'parsl/executors/workqueue/exec_parsl_function.py',
'parsl/executors/workqueue/parsl_coprocess.py',
],
extras_require=extras_require,
classifiers=[
# Maturity
'Development Status :: 5 - Production/Stable',
# Intended audience
'Intended Audience :: Developers',
# Licence, must match with licence above
'License :: OSI Approved :: Apache Software License',
# Python versions supported
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
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',
'parsl-perf=parsl.benchmark.perf:cli_run',
]}
)