kopia lustrzana https://github.com/corrscope/corrscope
11 wiersze
222 B
Python
11 wiersze
222 B
Python
|
import os
|
||
|
import subprocess
|
||
|
import sys
|
||
|
|
||
|
# To write graph, pass --log-level=DEBUG
|
||
|
|
||
|
# pyinstaller corrscope/__main__.py --name corrscope -y
|
||
|
args = 'pyinstaller corrscope.spec -y'.split() + sys.argv[1:]
|
||
|
|
||
|
subprocess.run(args)
|