File: deb_materialization.py

package info (click to toggle)
debputy 0.1.78
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,616 kB
  • sloc: python: 66,232; perl: 155; sh: 102; makefile: 39
file content (11 lines) | stat: -rwxr-xr-x 327 bytes parent folder | download | duplicates (4)
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_materialization import main
    main()