blob: 4b3410fcb172b7aeff909f3da8b09e1eef99f61b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/python3 -B
import pathlib
import sys
DEBPUTY_ROOT_DIR = pathlib.Path(__file__).parent # TODO: Subst during install
if __name__ == '__main__':
# setup PYTHONPATH: add our installation directory.
sys.path.insert(0, str(DEBPUTY_ROOT_DIR))
from debputy.commands.deb_packer import main
main()
|