reference to poetry in readme
This commit is contained in:
parent
f602579357
commit
a4dfffb40d
1
{{ cookiecutter.project_slug }}/.gitignore
vendored
1
{{ cookiecutter.project_slug }}/.gitignore
vendored
|
@ -26,6 +26,7 @@ wheels/
|
|||
*.egg
|
||||
|
||||
# virtualenv
|
||||
.venv/
|
||||
venv/
|
||||
|
||||
# mypy
|
||||
|
|
|
@ -18,13 +18,14 @@ This project if a free software released under the {{ cookiecutter.open_source_l
|
|||
|
||||
## 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
|
||||
cd {{ cookiecutter.project_slug }}
|
||||
python -m venv venv && source venv/bin/activate
|
||||
pip install -e .[dev]
|
||||
poetry shell
|
||||
poetry install
|
||||
```
|
||||
|
||||
### Test
|
||||
|
|
Loading…
Reference in a new issue