forked from workflowhub-eu/galaxy2cwl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·59 lines (51 loc) · 1.91 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# © Copyright 2019-2020 Ignacio Eguinoa, VIB, Universiteit Gent, and workflowhub.eu contributors
#
#
# SPDX-License-Identifier: BSD-3-Clause
__author__ = "Ignacio Eguinoa <https://orcid.org/0000-0002-6190-122X>"
__copyright__ = "© 2019-2020 Ignacio Eguinoa, VIB, Universiteit Gent, and workflowhub.eu contributors"
__license__ = "BSD-3-Clause"
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'galaxy2cwl',
packages = find_packages(exclude=['contrib', 'docs', 'tests']), # Required
version = "0.1.5-dev",
description = 'Convert a Galaxy workflow to abstract Common Workflow Language (CWL)',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'Ignacio Eguinoa',
include_package_data=True,
license = "BSD 3-Clause",
url = 'https://github.com/workflowhub-eu/galaxy2cwl',
keywords = "cwl galaxy workflow",
install_requires=[
'pyyaml >= 5.3.0',
'gxformat2 >= 0.11.0'
],
# tests_require=['pytest'],
entry_points={
'console_scripts': ["galaxy2cwl=galaxy2cwl.get_cwl_interface:main"]
},
python_requires='>=3.5, <4',
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Utilities'
],
)