[upd] | Pipfile

This block contains the minimum production dependencies required for the application to run successfully. How to manage your Python projects with Pipenv - Thoughtbot

:

package = "*" # Latest version package = "==1.2.3" # Exact version package = ">=1.0,<2.0" # Version range package = "~=1.2.3" # Compatible release (>=1.2.3, <1.3.0) package = git = "https://github.com/user/repo.git" package = editable = true, path = "./local-lib" Pipfile

A standard Pipfile is broken down into four foundational blocks defined by brackets: 1. [[source]] Pipfile