Your requirements.txt file is stuffed with unnecessary packages and references to locally installed packages.
This does not work, the file needs to be cleaned up.
See my pull request on GitHub.
Btw, it is bad practice do generate the requirements.txt file by pip freeze or similar.
Just populate the requirements.txt file manually. You know which 3rd party packages you use by the import statements in your code. Everything else let the pip paket manager resolve itself.