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 27 28 29 30 31 32 33 34 35
|
# pip requirements files
## Index
These files are generated by `tools/generate_requirements.py` from `pyproject.toml`.
- [default.txt](default.txt)
Default project dependencies.
- [build.txt](build.txt)
Requirements for building from the source repository.
- [data.txt](data.txt)
Data requirements.
- [developer.txt](developer.txt)
Developer requirements.
- [docs.txt](docs.txt)
Documentation requirements.
- [optional.txt](optional.txt)
Optional requirements. All of these are installable without a compiler through pypi.
- [test.txt](test.txt)
Requirements for running test suite.
## Examples
### Installing requirements
```bash
$ pip install -U -r requirements/default.txt
```
### Running the tests
```bash
$ pip install -U -r requirements/default.txt
$ pip install -U -r requirements/test.txt
```
|