如何在python上添加包安装要求以上传我的包到PyPi?



我的意思是,我要创建一个python包它需要pygame才能运行,但我不知道如何在setup。py

中添加它
from setuptools import setup
setup(
...
install_reqs=[
"pygame",
],
...
)

我改变install_reqs到? ?

install_requires.

请参阅setup函数的文档

相关内容

  • 没有找到相关文章

最新更新