This is a test project to demonstrate the structure and documentation of a software project.
# Create a virtual environment
python -m venv venv
# Activate the virtual environment for Windows
venv\Scripts\activate
# Activate the virtual environment for Linux/Mac
source venv/bin/activate
# Install the package in development mode
pip install -e .python -m pytest ./tests