Does anyone know if it is required that a Python repository has setup.py script in root directory in order for pip install git+[git repo] to work?  How does pip find dependent packages from the source code?
Thanks!
Does anyone know if it is required that a Python repository has setup.py script in root directory in order for pip install git+[git repo] to work?  How does pip find dependent packages from the source code?
Thanks!
 
    
    Yes. Dependent packages are looked up via said setup.py (setup_requires and install_requires).
