Let's say we create a private python package, that depends on another private python hosted in a private enterprise PyPi repository (artifactory).
The setup.cfg looks as follows,
[options]
python_requires = >= 3.6, <3.9.0a0
setup_requires =
setuptools >= 46.4.0
wheel
install_requires = [
keyring
private-pkg1 >= 0.1.0
private-pkg2 >= 0.1.0
simple-parsing ]
$HOME/.pip/pip.confg
is configured download the packages from internal PyPi hosted in Artifactory.
[global]
index-url = https://artifactory.mycorp.com/artifactory/api/pypi/PyPI/simple/
But this doesn't work when python setup.py egg_info
is executed
- Can setup.cfg depend on wheel packages stored private PyPi?
- What is the correct way to specify additional repository URLs for downloading dependencies?