| 1234567891011121314151617 |
- .PHONY : docs
- docs :
- rm -rf docs/build/
- sphinx-autobuild -b html --watch olmocr/ docs/source/ docs/build/
- .PHONY : run-checks
- run-checks :
- isort --check .
- black --check .
- ruff check .
- mypy .
- CUDA_VISIBLE_DEVICES='' pytest -v --color=yes --doctest-modules tests/ olmocr/
- .PHONY : build
- build :
- rm -rf *.egg-info/
- python -m build
|