什么是分配python命令行工具的最佳方法?

我目前的setup.py脚本工作正常,但它将tvnamer.py (工具)作为tvnamer.py到网站包或类似的地方..

我可以使setup.py安装tvnamer.py作为tvnamer ,和/或有更好的安装命令行应用程序的方法吗?

尝试setup()调用中的entry_points.console_scripts参数。 正如在setuptools文档中所描述的,这应该做我认为你想要的。

在这里重现:

 from setuptools import setup setup( # other arguments here... entry_points = { 'console_scripts': [ 'foo = package.module:func', 'bar = othermodule:somefunc', ], } )