-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (23 loc) · 956 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
26
27
# Taverna Player Client for running Taverna Workflows from IPython Notebook.
#-----------------------------------------------------------------------------
# Copyright (c) 2014, University of Manchester <[email protected]>
#
#
#!/usr/bin/env python
from distutils.core import setup
setup(name='tavernaPlayerClient',
version='0.04',
description='Taverna Player Client for running Taverna Workflows from IPython Notebook',
author='Alan R. Williams, Youri Lammers, Ross Mounce, Aleksandra Pawlik',
author_email='[email protected]',
url='http://www.mygrid.org.uk',
packages=['tavernaplayerclient'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering",
],
)