-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 941 Bytes
/
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
from setuptools import setup
setup(
name='parsl_dag_vis',
packages=['dag_vis'],
version='0.1.6',
description='DAG visualization code to be run from Jupyter notebooks to visualize data flow dependency graphs of workflows',
author='Ben Glick',
author_email='glick@lclark.edu',
license='Apache 2.0',
url='https://github.com/benhg/parsl-dag-vis',
download_url='https://github.com/benhg/parsl-dag-vis/archive/v0.1-alpha.zip',
keywords=['parsl', 'jupyter', 'visualization',
'Workflows', 'Scientific computing'],
install_requires=[
'parsl',
'jupyter',
'ipython'
],
classifiers=['Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', ],
)