mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-16 20:27:05 +03:00
- Call PyInstaller directly from builder script - Drop depenency to gravitybee - Change artifact path `dist/` on ci, test and upload scripts - Move standalone builder python script in `tools` - Also add pseudo launcher script in `tools` for PyInstaller - Actions: Update binary build and release scripts - Binary is built on venv that is removed after built - Support not only Windows but also linux/mac - Built on powershell on Windows, bash on others - Clean up duplicated configurations on setup.cfg - Leaves `entry_points` and `package_data` options Signed-off-by: Hiroshi Miura <miurahr@linux.com>
9 lines
168 B
Python
9 lines
168 B
Python
#!python.exe
|
|
import aqt
|
|
import re
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(aqt.main())
|