Set up a Python project with conda and poetry

It's useful to use conda to manage python environments and poetry to manage your project dependencies.

To set up your project it's as easy as running the following code:

conda create --name my-project python=3.11
conda activate my-project
conda install poetry
poetry config virtualenvs.create false
poetry install --no-root

Feel free to update the project name my-project and python version to suit your needs.