Skip to content
This repository was archived by the owner on Jun 9, 2020. It is now read-only.

Commit 80cae24

Browse files
committed
Merge in cwl origin
2 parents 1ad4f7c + 2ea29cc commit 80cae24

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

cwlgen/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,3 @@
2727
from .commandlinebinding import CommandLineBinding
2828
from .requirements import *
2929

30-
# Function(s) ------------------------------
31-
32-
# Class(es) ------------------------------
33-

doc/source/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ python-cwlgen dependencies
2020

2121
python-cwlgen is initially built with Python3 and uses the following libraries:
2222

23-
- ruamel.yaml (0.13.7)
23+
- ruamel.yaml (between 0.12.4 and 0.15.87)
2424
- six (1.10.0)
2525

2626
.. _installation:

setup.py

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
from setuptools import setup
22

3-
__version__ = "v0.0.5"
3+
exec(open('cwlgen/version.py').read())
44

5-
setup(name="illusional.cwlgen",
5+
setup(name="cwlgen",
66
version=__version__,
7-
description='Fork of python-cwlgen | Generation of CWL programmatically. Avaible types: CommandLineTool, '
8-
'Workflow and Requirements',
7+
description='Generation of CWL programmatically. Available types: Workflow, CommandLineTool and Requirements',
8+
author='Kenzo-Hugo Hillion and Herve Menager',
9+
author_email='[email protected]',
910
long_description=open("./README.md").read(),
1011
long_description_content_type="text/markdown",
11-
author='Michael Franklin | Kenzo-Hugo Hillion and Herve Menager',
12-
author_email='[email protected]',
1312
license='MIT',
1413
keywords=['cwl'],
15-
install_requires=['six', 'ruamel.yaml >= 0.12.4, <= 0.15.77'],
14+
install_requires=['ruamel.yaml >= 0.12.4, <= 0.15.87'],
1615
packages=["cwlgen"],
1716
classifiers=[
1817
'Development Status :: 4 - Beta',
19-
'Topic :: Scientific/Engineering',
18+
'Topic :: Scientific/Engineering :: Bio-Informatics',
2019
'Intended Audience :: Developers',
2120
'Intended Audience :: Science/Research',
2221
'Environment :: Console',
2322
],
24-
)
23+
)

0 commit comments

Comments
 (0)