1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# pip requirements files
## Index
- [`test.txt`](test.txt)
Requirements for running test suite
- [`doc.txt`](doc.txt)
Requirements for building the documentation (see `../doc/`)
- [`developer.txt`](developer.txt)
Requirements for developers
- [`release.txt`](release.txt)
Requirements for making releases
## Examples
### Running the tests
```bash
$ pip install -U -r requirements/test.txt
```
### Building the docs
```bash
$ pip install -U -r requirements/doc.txt
```
|