我有一个使用可执行文件的Python项目。
包装结构是这样的:
/Project
/Package
__init__.py
aClass.py
executableFile
LICENSE
README.md
我有这个setup.py:
...
setup(
author=...
author_email=....
classifiers=[...]
description=....
install_requires=[...]
license=..
long_description=...
include_package_data=True
packages=find_packages(include=['Package*'])
url=..
version=x.x.x
)
但是当我按照here的说明通过PyPI中的麻线上载软件包时,不会加载可执行文件。
如何在包装中正确包含该文件?
PS:我也读过有关在setup.py中添加scripts = [..]的信息,但仅限于python文件。