pynsist не включая файлы - PullRequest
0 голосов
/ 27 марта 2019

Я пытаюсь создать исполняемый файл окна с помощью pynsis и могу создать исполняемый файл, но проблема в том, что он не включает папку программы и файлы.Ниже приведен файл installer.cfg

[Application]
name=ABCD
version=1.0.3
# How to launch the app - this calls the 'main' function from the 'myapp' package:
# https://github.com/takluyver/pynsist
entry_point=main:main
# icon=logo.png
console=true

[Python]
version=3.6.3
# bitness=32

[Include]
# Packages from PyPI that your application requires, one per line
packages=
    pip
    tkinter
    _tkinter


# To bundle packages which don't publish wheels, or to include directly wheel files
# from a directory, see the docs on the config file.

# Other files and folders that should be installed
files=lib
    xyz/ > $INSTDIR

. Это создает приложение успешно, но проблема в том, что папка xyz не включается в исполняемый файл.Что мне не хватает в коде конфигурации?

...