Skip to content

Commit

Permalink
Fix MANIFEST.in, as Python packages require
Browse files Browse the repository at this point in the history
  • Loading branch information
James R. Barlow committed Aug 31, 2016
1 parent c6f2eea commit e0a18ed
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ log/
.ipynb_checkpoints/
tests/cache/
tests/output/
tests/resources/private
tests/resources/private/
tmp/
39 changes: 37 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,39 @@
recursive-exclude tests/output *
# requirements
include requirements.txt
include test_requirements.txt
include share/*

# git
include .git_archival.txt

# docker
include Dockerfile
include Dockerfile.polyglot
include .dockerignore

# tests
include pytest.ini
recursive-include tests *.jpg
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

# support files
recursive-include ocrmypdf/data *
recursive-include share *

# code
recursive-include ocrmypdf *.py
exclude ocrmypdf/lib/_leptonica.py
include OCRmyPDF.sh
include docker-wrapper.sh


0 comments on commit e0a18ed

Please sign in to comment.