You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pyentrypoint/pyentrypoint/__main__.py

11 lines
162 B
Python

from __future__ import absolute_import
from __future__ import unicode_literals
from sys import argv
from .entrypoint import main as m
def main():
m(argv)