#!/usr/bin/env python3
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.
"""

import stdeb3.cli_runner
import sys


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


if __name__=='__main__':
    main()
