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

How do you add a package install requirement on python to upload my package to PyPi?

所以我的标题是这样的,我要创建一个 python 包,它需要 pygame 才能让我的包工作,但我不知道如何你在 setup.py

中添加吗
from setuptools import setup

setup(
    ...
    install_reqs=[
        "pygame",
    ],
    ...
)

我把install_reqs改成???

install_requires.

请参阅 setup function

的文档