Manage Python packages and dependencies. See also:
asdf. More information: https://python-poetry.org/docs/cli/.
poetry new {{project_name}}
pyproject.toml file in the current directory:poetry add {{dependency}}
pyproject.toml file in the current directory:poetry install
-n for non-interactively) initialize the current directory as a new Poetry project:poetry init
poetry.lock:poetry update
poetry run {{command}}
pyproject.toml:poetry version {{patch|minor|major|prepatch|preminor|premajor|prerelease}}
poetry shell):eval "$(poetry env activate)"