我当前的setup.py
脚本运行正常,但它将tvnamer.py
(工具)安装为tvnamer.py
到网站包或类似的地方..
我可以将setup.py
安装tvnamer.py
作为tvnamer
,和/或是否有更好的方法来安装命令行应用程序?
答案 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',
],
}
)