File: readucks-runner.py

package info (click to toggle)
readucks 0.0.3-6
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 9,460 kB
  • sloc: python: 1,973; sh: 38; makefile: 5
file content (9 lines) | stat: -rwxr-xr-x 175 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python3
"""
Convenience wrapper for running Readucks directly from source tree.
"""

from readucks.readucks import main
 
if __name__ == '__main__':
    main()