File size: 234 Bytes
7a18dc2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#!/bin/bash

set -ex

ADDITIONAL_ARGS=$@

pip-compile \
    -o requirements.txt \
    $ADDITIONAL_ARGS \
    pyproject.toml
    
pip-compile \
    --extra=dev \
    -o dev-requirements.txt \
    $ADDITIONAL_ARGS \
    pyproject.toml