2020-07-24 02:20:30 -04:00
|
|
|
# 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
|
2020-09-04 17:22:28 -04:00
|
|
|
The automatic script will erase this dependency, but you can add it for your locally test.
|
2020-07-24 02:20:30 -04:00
|
|
|
```bash
|
|
|
|
|
poetry add PYTHON_MODULE
|
|
|
|
|
```
|