mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
7 lines
135 B
Plaintext
7 lines
135 B
Plaintext
|
#!/usr/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
import sys
|
||
|
from gpep517.__main__ import main
|
||
|
if __name__ == "__main__":
|
||
|
sys.exit(main())
|