This project is managed using Poetry, a tool for dependency management and packaging in Python. This README provides a guide on how to set up, install dependencies, and use Poetry in this project.
- Python 3.11 (or the required version specified in
pyproject.toml) - Poetry (install via
pip install poetryor follow Poetry's installation guide)
git clone <repository-url>
cd <repository-directory>
cd projectEnsure you are using the correct Python version:
poetry env use python3.11 or
poetry env use {your python bin path}
Find that using "where python" in Git bash
Run the following command to install all dependencies as specified in pyproject.toml:
poetry installThis will create a virtual environment and install all required packages.
To activate the virtual environment created by Poetry, run:
poetry shellThis will allow you to run Python commands and scripts within the context of the project's virtual environment.