我的意思是,我要创建一个python包它需要pygame才能运行,但我不知道如何在setup。py
中添加它from setuptools import setup
setup(
...
install_reqs=[
"pygame",
],
...
)
我改变install_reqs到? ?
install_requires
.
请参阅setup函数的文档