aports/main/py3-gpep517/gpep517
ptrcnull e9025ee282 main/py3-gpep517: add launcher script
allows for the module to be used directly as `gpep517` instead `python3 -m ...`
2022-09-26 05:37:04 +00:00

6 lines
136 B
Python

#!/usr/bin/python3
# -*- coding: utf-8 -*-
import sys
from gpep517.__main__ import main
if __name__ == "__main__":
sys.exit(main())