Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/planemo/cwl/cwl2script/setup.py @ 5:9b1c78e6ba9c draft default tip
"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author | shellac |
---|---|
date | Mon, 01 Jun 2020 08:59:25 -0400 |
parents | 79f47841a781 |
children |
comparison
equal
deleted
inserted
replaced
4:79f47841a781 | 5:9b1c78e6ba9c |
---|---|
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 ) |