cbrown1234 / pip-tools-example

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Install pip-tools

pip install pip-tools

Specify real requirements in requirements.in

pip-compile
pip-sync

Split out the dev requirements into requirements-dev.in

Remember to include -c requirements.txt to be fully compatible with runtime requirements

pip-compile
pip-compile requirements-dev.txt
pip-sync requirements-dev.txt requirements.txt

About


Languages

Language:Python 86.8%Language:Makefile 13.2%