Python 打包 - entry_points

查看原文

在 Python 中提供 bin 程序的一个好方法是为项目的 setup.py 提供 entrypoint。具体方法是提供一个 main 方法,然后在 setup.py 的 setup 中加入 entry_points={'console_scripts': ['your-cli=path.to.module:main']}。特别的,如果开发的是 GUI 程序,相应的改为 gui_scripts。