Код: Выделить всё
pyproject.tomlКод: Выделить всё
[tool.poetry.scripts]
xyz = "src.cli:main"
Код: Выделить всё
.
├── poetry.lock
├── pyproject.toml
├── run-book.txt
└── src
├── __init__.py
└── cli.py
Код: Выделить всё
❯ poetry install
Installing dependencies from lock file
No dependencies to install or update
Код: Выделить всё
❯ xyz
zsh: command not found: xyz
Подробнее здесь: https://stackoverflow.com/questions/706 ... ntrypoints