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

时间:2008-08-20 13:07:26

标签: python command-line packaging

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

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

1 个答案:

答案 0 :(得分:34)

尝试setup()调用中的entry_points.console_scripts参数。正如setuptools docs中所述,这应该按照我的想法做到。

要在此重现:

from setuptools import setup

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