mirror of
https://gh.wpcy.net/https://github.com/bohdanbobrowski/blog2epub.git
synced 2026-04-24 09:44:58 +08:00
7 lines
208 B
Python
7 lines
208 B
Python
from pathlib import Path
|
|
|
|
import PyInstaller.__main__
|
|
|
|
HERE = Path(__file__).parent.absolute()
|
|
blog2epub_windows_spec = str(HERE / "blog2epub_windows.spec")
|
|
PyInstaller.__main__.run([blog2epub_windows_spec])
|