poetry
Installation
SKILL.md
Poetry
Overview
Poetry is a Python dependency manager and build tool. It handles virtual environments, dependency resolution (with a lock file), project scaffolding, and PyPI publishing. The modern replacement for pip + setuptools + virtualenv.
Instructions
Step 1: New Project
# Install Poetry
curl -sSL https://install.python-poetry.org | python3 -
# Create new project
poetry new my-api
cd my-api
# Or init in existing directory
Related skills