File: py2dsc-deb

package info (click to toggle)
stdeb 0.10.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 824 kB
  • sloc: python: 2,149; sh: 191; makefile: 20
file content (20 lines) | stat: -rwxr-xr-x 345 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python3

import stdeb.cli_runner
import sys

USAGE = """\
usage: py2dsc-deb [options] distfile
   or: py2dsc-deb --help

where distfile is a .zip or .tar.gz file built with the sdist command
of distutils.
"""


def main():
    sys.exit(stdeb.cli_runner.runit(cmd='bdist_deb', usage=USAGE))


if __name__ == '__main__':
    main()