File: cwltool.py

package info (click to toggle)
cwltool 3.1.20250110105449-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 10,516 kB
  • sloc: python: 20,992; javascript: 20,796; sh: 233; makefile: 152
file content (14 lines) | stat: -rwxr-xr-x 335 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python3
# PYTHON_ARGCOMPLETE_OK
"""Convenience entry point for cwltool.

This can be used instead of the recommended method of `./setup.py install`
or `./setup.py develop` and then using the generated `cwltool` executable.
"""

import sys

from cwltool import main

if __name__ == "__main__":
    main.run(sys.argv[1:])