14 lines
418 B
Markdown
14 lines
418 B
Markdown
|
|
# Poetry
|
||
|
|
## Add automatically dependancies
|
||
|
|
Add your dependancies in files [requirements.txt](../requirements.txt) and run script
|
||
|
|
```bash
|
||
|
|
./script/poetry_update.py
|
||
|
|
```
|
||
|
|
This will search all requirements.txt files and update pyproject.toml, to run poetry update.
|
||
|
|
|
||
|
|
## Add manually dependancies
|
||
|
|
The automatic script will erase this dependancy, but you can add it for your locally test.
|
||
|
|
```bash
|
||
|
|
poetry add PYTHON_MODULE
|
||
|
|
```
|