13 lines
394 B
Markdown
13 lines
394 B
Markdown
# requirements management
|
|
|
|
The python dependencies in requirements.txt are now managed with [pip-tools](https://github.com/jazzband/pip-tools)
|
|
|
|
Only edit *.in files to add or adapt dependency
|
|
|
|
Run the following commands to compile new requirements*.txt files
|
|
|
|
```
|
|
pip-compile --output-file=requirements.txt requirements.in
|
|
pip-compile --output-file=requirements-dev.txt requirements-dev.in
|
|
```
|