-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (34 loc) · 1.25 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
from setuptools import setup, find_packages
with open('viz_server/version.py') as f:
exec(f.read())
with open('requirements.txt') as f:
install_requires = f.readlines()
setup(
name='viz_server',
version=VERSION,
description='Visualizing data dependent workflows in Python',
long_description='Visualizing parallel workflows system for Python',
url='https://github.com/Parsl/viz_server',
author='The Parsl Team',
author_email='[email protected]',
license='Apache 2.0',
download_url='https://github.com/Parsl/parsl/archive/{}.tar.gz'.format(VERSION),
include_package_data=True,
packages=find_packages(),
install_requires=install_requires,
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.5',
'Programming Language :: Python :: 3.6',
],
keywords=['Visualization', 'Workflows', 'Scientific computing'],
entry_points={'console_scripts':
['parsl-visualize=viz_server.viz_app:cli_run',
]}
)