如何在快速的setup.py中定义多行long_description?

当我尝试使用三重引号时python-mkdebianquickly package [--extras]后出现大声崩溃,当我只用单引号制作多行字符串后,后者默默地停止。

您可以使用+运算符来连接字符串。 以下是我在app的setup.py文件中执行此操作的摘录:

 long_description="Qreator enables you to easily create your " + "own QR codes to encode different types of information " + "in an efficient, compact and cool way.", 

你也可以像这样使用Python的隐式行继续 :

 long_description=( "Qreator enables you to easily create your " "own QR codes to encode different types of information " "in an efficient, compact and cool way." ),