-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
24 lines (23 loc) · 843 Bytes
/
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
from setuptools import setup
setup(name="cwl2argparse",
version="0.1.7",
description='Generating Python code from CWL tool descriptions with CWL inputs/outputs as argparse arguments',
author='Anton Khodak',
author_email='anton.khodak@ukr.net',
url='https://github.com/common-workflow-language/cwl2argparse',
install_requires=['jinja2', 'pyyaml'],
entry_points={
'console_scripts': [
'cwl2argparse = cwl2argparse.main:main'
]
},
packages=['cwl2argparse'],
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: POSIX',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
],
include_package_data=True,
)