Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/planemo/cwl/cwl2script/setup.py @ 2:6af9afd405e9 draft
"planemo upload commit 0a63dd5f4d38a1f6944587f52a8cd79874177fc1"
author | shellac |
---|---|
date | Thu, 14 May 2020 14:56:58 -0400 |
parents | 26e78fe6e8c4 |
children |
comparison
equal
deleted
inserted
replaced
1:75ca89e9b81c | 2:6af9afd405e9 |
---|---|
1 #!/usr/bin/env python | |
2 | |
3 import os | |
4 import sys | |
5 import setuptools.command.egg_info as egg_info_cmd | |
6 import shutil | |
7 | |
8 from setuptools import setup, find_packages | |
9 | |
10 SETUP_DIR = os.path.dirname(__file__) | |
11 README = os.path.join(SETUP_DIR, 'README') | |
12 | |
13 setup(name='cwl2script', | |
14 version='1.0', | |
15 description='Compile Common Workflow Languge to shell script', | |
16 long_description=open(README).read(), | |
17 author='Common workflow language working group', | |
18 author_email='common-workflow-language@googlegroups.com', | |
19 url="https://github.com/common-workflow-language/cwl2script", | |
20 download_url="https://github.com/common-workflow-language/cwl2script", | |
21 license='Apache 2.0', | |
22 py_modules=["cwl2script"], | |
23 install_requires=[ | |
24 'cwltool >= 1.0.20151013135545' | |
25 ], | |
26 entry_points={ | |
27 'console_scripts': [ "cwl2script=cwl2script:main" ] | |
28 }, | |
29 zip_safe=True | |
30 ) |