I am using a library I control. I would quite like to include this library and its dependencies in an app that uses setup.py. And would prefer not to go through git of pypi or my own package repository.
Would it be possible to point the app's setup.py
at a directory where that directory has its own setup.py
using install_requires
? It isn't discussed in the setuptools document - but I'm suspicious that this documentation is written for discoverability rather than completeness - as the cool kids do noweredays. I seem to remember doing this with requirements.txt
before but I am trying to use raw setup.py
here.
Here is a diagram of the file structure:
/library # the library is guaranteed to be at /library - docker
library.py
setup.py
/app
# this uses library
setup.py() <- I want this to install library from /library
app.py