Files
whipper-gui/whipper/__main__.py
Volker Mische 88c7abc0e5 Run whipper without installation
This commit makes it possible to run whipper directly with
`python -m whipper` from wither within the source directory
or with `PYTHONPATH` set to the source directory.
2018-01-29 01:47:41 +01:00

11 lines
151 B
Python

# -*- Mode: Python -*-
# vi:si:et:sw=4:sts=4:ts=4
import sys
from whipper.command.main import main
if __name__ == '__main__':
sys.exit(main())