def override_get_script_args(
dist, executable=os.path.normpath(sys.executable), is_wininst=False):
"""Override entrypoints console_script."""
header = easy_install.get_script_header("", executable, is_wininst)
for group in 'console_scripts', 'gui_scripts':
for name, ep in dist.get_entry_map(group).items():
if not ep.attrs or len(ep.attrs) > 2:
raise ValueError("Script targets must be of the form "
"'func' or 'Class.class_method'.")
script_text = _script_text % dict(
group=group,
module_name=ep.module_name,
import_target=ep.attrs[0],
invoke_target='.'.join(ep.attrs),
)
yield (name, header + script_text)
packaging.py 文件源码
python
阅读 27
收藏 0
点赞 0
评论 0
评论列表
文章目录