File: cwltool.py

package info (click to toggle)
cwltool 1.0.20170114120503-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,368 kB
  • sloc: python: 4,573; makefile: 102; sh: 11
file content (12 lines) | stat: -rwxr-xr-x 320 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
"""Convienance 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__":
    sys.exit(main.main(sys.argv[1:]))