Document Processing
Collection of Python modules to build efficient document processing workflows.
Development
Base setup
- Use a virtualenv (e.g. with virtualenvwrapper
mkvirtualenv -a . document_processing
) - Install document_processing as a package (e.g.
pip install -e .
)
Tests
Tests are executed with tox
.
To reload the test virtual environment you can use tox -r
Run a single test module: tox -- <test_path>
Run a single test: tox -- <test_path>::<test_function>