Pipenv
Python Development Workflow for Humans
Pipenv is a package manager that brings all the best of the packaging world together to the Python world. It's got everything you could need: bundler, composer, npm, cargo, yarn and more all in one convenient package so you can easily set up a working environment.
Pipenv creates and manages a virtualenv automatically, and can add or remove packages from your Pipfile as you install/uninstall packages. It also produces the Pipfile.lock, which is essential for deterministic...