How to include an executable file in setup.py
问题 I have a Python project that uses an executable file. The package structure is something like that: /Project /Package __init__.py aClass.py executableFile LICENSE README.md and I've this 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 ) but when I upload the package as stated here with twine in PyPI, the