A framework that tries to fix dependency errors of Python projects.
This framework is the result of my work on my bachelor's thesis which you can find here (in Spanish).
Checkout pydep --help
for details.
To develop you need to setup a virtual environment for this project, using by
example the venv
module, and then you need to install flit
in that environment to install dependencies.
Once inside the virtual environment install flit
with pip install flit
.
Then install all development dependencies with make dev
which does:
flit install -s --deps=develop
Note that this installs this project in development mode.