20 lines
609 B
Bash
20 lines
609 B
Bash
python -m nuitka \
|
|
--standalone \
|
|
--onefile \
|
|
--follow-imports \
|
|
--lto=yes \
|
|
--jobs=8 \
|
|
--remove-output \
|
|
--output-dir=dist \
|
|
--enable-plugin=numpy \
|
|
--include-package=pymysql \
|
|
--include-module=sqlalchemy.dialects.mysql \
|
|
--include-module=sqlalchemy.engine \
|
|
--include-module=sqlalchemy.sql \
|
|
--include-module=cv2 \
|
|
--noinclude-custom-mode=cv2.gui:warning \
|
|
--nofollow-import-to=matplotlib,scipy,pandas,tkinter,test \
|
|
--noinclude-default-mode=error \
|
|
--python-flag=no_docstrings \
|
|
--noinclude-data-files=*.png,*.mp4,*.xls* \
|
|
main.py |