6.3 Deliverables
This project has the following deliverables:
A
pyproject.toml
file that identifies the tools used. For this book, we usedjupyterlab==3.5.3
. Note that while the book was being prepared for publication, version 4.0 was released. This ongoing evolution of components makes it important for you to find the latest version, not the version quoted here.Documentation in the
docs
folder.Unit tests for any new application modules in the
tests
folder.Any new application modules in the
src
folder with code to be used by the inspection notebook.A notebook to inspect the raw data acquired from any of the sources.
The project directory structure suggested in Chapter 1, Project Zero: A Template for Other Projects mentions a notebooks
directory. See List of deliverables for more information. Previous chapters haven’t used any notebooks, so this directory might not have been created in the first place. For this project, the snotebooks
directory is needed.
Let’...