Simple, no-hassle reference for packaging a Python project using just pyproject.toml
.
$ python3 -m venv ./venv
$ source venv/bin/activate
$ pip3 install -e .
$ pip3 install -e ".[dev]"
If you want to use conda:
$ conda create -n ENVNAME "python>=3.8" --file requirements.txt