build: Install Python dependencies and initialize the virtual environment.

This commit is contained in:
2026-01-31 18:07:38 +08:00
commit b9b623e3e6
3293 changed files with 535145 additions and 0 deletions

8
venv/bin/normalizer Executable file
View File

@@ -0,0 +1,8 @@
#!/home/wartana/myApp/billing-mcp/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from charset_normalizer.cli import cli_detect
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(cli_detect())