/
ewilwayz
/
WordDocFormater
Обзор
Документация
Войти
/
ewilwayz
/
WordDocFormater
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/setup.py
41 строка
950 B
Валентин Мудрик
Версия 1.0.0
24 окт 2025, 21:29
24 окт 2025, 21:29
ee1b2c2
Код
Авторство
О чём код?
from cx_Freeze import setup, Executable import sys build_options = { "packages": [ "os", "sys", "tkinter", "collections", "io", "re", "lxml", "lxml.etree", "docx", "yaml", "striprtf", "typing_extensions", "packaging" ], "includes": [ "controller", "gui_form", "word_build" ], "excludes": [ "unittest", "email", "http", "xmlrpc", "pdb", "pip", "setuptools", "distutils", "BeautifulSoup", "_curses", "annotationlib", "bs4", "cssselect", "html5lib", "lxml_html_clean", "pydoc" ], "include_files": [ "build_config.yaml" ], "optimize": 1 } executables = [ Executable( "main.py", base="Win32GUI", target_name="MyWordApp.exe", ) ] setup( name="MyWordApp", version="1.0.0", description="Word Document Processor", options={"build_exe": build_options}, executables=executables )