forked from common-workflow-language/workflow-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (51 loc) · 2.02 KB
/
setup.py
File metadata and controls
56 lines (51 loc) · 2.02 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
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
#!/usr/bin/env python
import os
from setuptools import setup
SETUP_DIR = os.path.dirname(__file__)
long_description = ""
with open("README.pypi.rst") as readmeFile:
long_description = readmeFile.read()
setup(name='wes-service',
version='3.3',
description='GA4GH Workflow Execution Service reference implementation',
long_description=long_description,
author='GA4GH Containers and Workflows task team',
author_email='common-workflow-language@googlegroups.com',
url="https://github.com/common-workflow-language/cwltool-service",
download_url="https://github.com/common-workflow-language/cwltool-service",
license='Apache 2.0',
packages=["wes_service", "wes_client"],
package_data={'wes_service': ['openapi/workflow_execution_service.swagger.yaml']},
include_package_data=True,
install_requires=[
'future',
'connexion >= 2.0.2, < 3',
'ruamel.yaml >= 0.12.4, <= 0.15.77',
'schema-salad',
'subprocess32==3.5.2'
],
entry_points={
'console_scripts': ["wes-server=wes_service.wes_service_main:main",
"wes-client=wes_client.wes_client_main:main"]
},
extras_require={
"cwltool": ['cwlref-runner'],
"arvados": ["arvados-cwl-runner"
],
"toil": ["toil[all]==3.20.0"
]},
zip_safe=False,
platforms=['MacOS X', 'Posix'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)