|
|
|
|
|
by conradev
3430 days ago
|
|
I'm surprised that no one has mentioned pip-tools: https://github.com/nvie/pip-tools It's a very similar set of tools. I use pip-compile which allows me to put all of my dependencies into a `requirements.in` file, and then "compile" them to a `requirements.txt` file as a lockfile (so that it is compatible with pip as currently exists). This looks great, though, I'm excited to check it out! |
|