File: py2dsc

package info (click to toggle)
stdeb 0.10.0-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 748 kB
  • sloc: python: 2,105; sh: 187; ruby: 76; makefile: 20
file content (20 lines) | stat: -rwxr-xr-x 337 bytes parent folder | download | duplicates (3)
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 [options] distfile
   or: py2dsc --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='sdist_dsc', usage=USAGE))


if __name__ == '__main__':
    main()