#! /usr/bin/python3 -sP
import sys
from nnunetv2.model_sharing.entry_points import install_from_zip_entry_point
if __name__ == '__main__':
    sys.argv[0] = sys.argv[0].removesuffix('.exe')
    sys.exit(install_from_zip_entry_point())
