Skip to content Skip to sidebar Skip to footer

Getting Setuptools To Ignore Pypi Repository

I have in my packages setup.py: from setuptools import setup setup( dependency_links=['http://local.mirror'], install_requires=[ 'many', 'different',

Solution 1:

Placing the following setup.cfg file in the same location as setup.py has addressed this:

[easy_install]
allow_hosts = local.mirror

Post a Comment for "Getting Setuptools To Ignore Pypi Repository"