-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (27 loc) · 1.13 KB
/
setup.py
File metadata and controls
27 lines (27 loc) · 1.13 KB
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
from setuptools import setup
setup(
name = 'cerise_client',
packages = ['cerise_client'],
version = 'develop',
description = 'Client library for the Cerise CWL job running service',
author = 'Lourens Veen',
author_email = 'l.veen@esciencecenter.nl',
url = 'https://github.com/MD-Studio/cerise-client',
download_url = 'https://github.com/MD-Studio/cerise-client/archive/develop.tar.gz',
license = 'Apache License 2.0',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4',
install_requires=[
'defusedxml',
'future',
'requests'
],
keywords = ['CWL', 'workflow', 'HPC'],
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Distributed Computing'],
)