我如何使用 python 的命令行脚本 运行 在后台运行 python 程序?

How can I run a python program in the background using python's Command Line Scripts?

我目前使用命令行脚本 (https://python-packaging.readthedocs.io/en/latest/command-line-scripts.html) 将我的程序设置为 运行,如下所示:

 "console_scripts": ["app_name = app_name.cli:command_line"],

我怎样才能让这个程序 运行 像 pythonw 一样在后台运行?

而不是 console_scripts,作为 GUI 应用程序应该 运行 进入 gui_scripts

 "console_scripts": ["app_name = app_name.cli:command_line"],
 "gui_scripts": ["app_name = app_name.gui:start_window"],

https://packaging.python.org/en/latest/specifications/entry-points/