mirror of
https://github.com/ocrmypdf/OCRmyPDF.git
synced 2026-05-19 12:04:44 -04:00
52 lines
1016 B
Plaintext
52 lines
1016 B
Plaintext
# requirements
|
|
include requirements.txt
|
|
include test_requirements.txt
|
|
include dev_requirements.txt
|
|
|
|
# git
|
|
include .git_archival.txt
|
|
|
|
# docker
|
|
include Dockerfile*
|
|
include .dockerignore
|
|
|
|
# tests
|
|
include pytest.ini
|
|
include .coveragerc
|
|
recursive-include tests *.jpg
|
|
recursive-include tests *.png
|
|
recursive-include tests *.pdf
|
|
recursive-include tests *.py
|
|
recursive-include tests *.rst
|
|
recursive-include tests *.txt
|
|
recursive-exclude tests/output *
|
|
recursive-exclude tests/output_pageinfo *
|
|
recursive-exclude tests/resources/private *
|
|
recursive-exclude tests/cache *
|
|
|
|
# documentation
|
|
include *.rst
|
|
include pipeline.svg
|
|
recursive-exclude .github *
|
|
recursive-include docs *.py
|
|
recursive-include docs *.rst
|
|
recursive-include docs *.svg
|
|
recursive-exclude docs/_build *
|
|
|
|
|
|
# support files
|
|
recursive-include ocrmypdf/data *
|
|
include *.py
|
|
exclude tasks.py
|
|
exclude debug-runner.py
|
|
recursive-exclude .travis *
|
|
exclude .travis*
|
|
|
|
|
|
# code
|
|
recursive-include ocrmypdf *.py
|
|
exclude ocrmypdf/lib/_leptonica.py
|
|
include docker-wrapper.sh
|
|
|
|
|