File: epyo3

package info (click to toggle)
python-pyo 1.0.3-0.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 36,056 kB
  • sloc: ansic: 128,063; python: 39,974; sh: 654; makefile: 390; cpp: 242
file content (12 lines) | stat: -rwxr-xr-x 364 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python3
# EASY-INSTALL-ENTRY-SCRIPT: 'pyo==1.0.0','console_scripts','epyo'
__requires__ = 'pyo==1.0.0'
import re
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
    sys.exit(
        load_entry_point('pyo==1.0.0', 'console_scripts', 'epyo')()
    )