CoolFace
Apppublic

vidya7732/AI_Doctor_LLM_GenModel

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
wheel-script.py11 linesDownload Raw Back to Scripts
1
2# -*- coding: utf-8 -*-
3import re
4import sys
5
6from wheel.cli import main
7
8if __name__ == '__main__':
9    sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
10    sys.exit(main())
11