Вопросы по теме 'install-requires'

python setuptools install_requires игнорируется при переопределении cmdclass
У меня есть setup.py , который выглядит так: from setuptools import setup from subprocess import call from setuptools.command.install import install class MyInstall(install): def run(self): call(["pip install -r requirements.txt...
5860 просмотров