Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/planemo/cwl/cwl2script/setup.py @ 0:26e78fe6e8c4 draft
"planemo upload commit c699937486c35866861690329de38ec1a5d9f783"
author | shellac |
---|---|
date | Sat, 02 May 2020 07:14:21 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:26e78fe6e8c4 |
---|---|
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 ) |