python setup.py install will automatically install packages listed in requires=[] using easy_install. How do I get it to use pip
python setup.py install
requires=[]
easy_install
pip
You can pip install a file perhaps by python setup.py sdist first. You can also pip install -e . which is like python setup.py develop.
pip install
python setup.py sdist
pip install -e .
python setup.py develop