reference to poetry in readme

This commit is contained in:
Histausse 2023-05-15 22:00:30 +02:00
parent f602579357
commit a4dfffb40d
3 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,5 @@
# TODO: # TODO:
- edit readme to use poetry
- tests - tests
- add AGPL - add AGPL
- add CI - add CI

View file

@ -26,6 +26,7 @@ wheels/
*.egg *.egg
# virtualenv # virtualenv
.venv/
venv/ venv/
# mypy # mypy

View file

@ -18,13 +18,14 @@ This project if a free software released under the {{ cookiecutter.open_source_l
## Dev ## Dev
If you want to tinker with this project, you can clone it and install it in editable mode: This project is managed by [poetry](https://python-poetry.org/).
To open a shell in a venv of the project:
``` ```
git clone {{ cookiecutter.project_url }}.git git clone {{ cookiecutter.project_url }}.git
cd {{ cookiecutter.project_slug }} cd {{ cookiecutter.project_slug }}
python -m venv venv && source venv/bin/activate poetry shell
pip install -e .[dev] poetry install
``` ```
### Test ### Test