reference to poetry in readme
This commit is contained in:
parent
f602579357
commit
a4dfffb40d
1
TODO.md
1
TODO.md
|
@ -1,6 +1,5 @@
|
||||||
# TODO:
|
# TODO:
|
||||||
|
|
||||||
- edit readme to use poetry
|
|
||||||
- tests
|
- tests
|
||||||
- add AGPL
|
- add AGPL
|
||||||
- add CI
|
- add CI
|
||||||
|
|
1
{{ cookiecutter.project_slug }}/.gitignore
vendored
1
{{ cookiecutter.project_slug }}/.gitignore
vendored
|
@ -26,6 +26,7 @@ wheels/
|
||||||
*.egg
|
*.egg
|
||||||
|
|
||||||
# virtualenv
|
# virtualenv
|
||||||
|
.venv/
|
||||||
venv/
|
venv/
|
||||||
|
|
||||||
# mypy
|
# mypy
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue