I want to create a python mycode package that will be installed using pip ( setup.py ), which has a dependency on another base package. To remove this package dependency, I follow the instructions of setup.py and created an entry in the setup the setup.py function, which reads:
'requires': ['base']
After I created the package with python setup.py sdist , I tried installing it through pip install , which successfully installed mycode , but nothing from base . It looks like the requires entry in setup.py been ignored.
Any ideas on what's going wrong?
Alex
source share