Python Pynsist包装不正确

Python Pynsist包装不正确,python,packaging,pynsist,Python,Packaging,Pynsist,我正在尝试这个新工具来分发Python项目,它被称为Pynsist 它工作得很好,但由于某些原因,安装后找不到任何软件包,解决问题的方法是将软件包从pkg文件夹移动到主文件夹,这非常奇怪。My installer.cfg: [Application] name=Seek scrapper version=1.0 # How to launch the app - this calls the 'main' function from the 'myapp' package: entry_poin

我正在尝试这个新工具来分发Python项目,它被称为Pynsist

它工作得很好,但由于某些原因,安装后找不到任何软件包,解决问题的方法是将软件包从pkg文件夹移动到主文件夹,这非常奇怪。My installer.cfg:

[Application]
name=Seek scrapper
version=1.0
# How to launch the app - this calls the 'main' function from the 'myapp' package:
entry_point=Scrape_pages_to_txt:main

[Python]
version=3.3.5
bitness=32

[Include]
# Importable packages that your application requires, one per line
packages = requests
     bs4
     selenium
     xlsxwriter

# Other files and folders that should be installed
files = ad_urls.txt
    xlsx_writer.py
    Scrape_ads_from_urls.py

我做错了什么?

感谢您使用pynsist!您可以尝试将Scrape\u pages\u添加到包列表的\u txt中吗?