--- id: poetry version: "2.4.1" license: MIT license_treatment: permissive maintenance: active --- # poetry — Python dependency management and packaging made easy. License: permissive · Maintenance: active · Popularity: top 1,000 on PyPI ## Install pip install poetry uv add poetry poetry add poetry ## Description # Poetry: Python packaging and dependency management made easy [![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/) [![Stable Version](https://img.shields.io/pypi/v/poetry?label=stable)][PyPI Releases] [![Pre-release Version](https://img.shields.io/github/v/release/python-poetry/poetry?label=pre-release&include_prereleases&sort=semver)][PyPI Releases] [![Python Versions](https://img.shields.io/pypi/pyversions/poetry)][PyPI] [![Download Stats](https://img.shields.io/pypi/dm/poetry)](https://pypistats.org/packages/poetry) [![Discord](https://img.shields.io/discord/487711540787675139?logo=discord)][Discord] Poetry helps you declare, manage and install dependencies of Python projects, ensuring you have the right stack everywhere. ![Poetry Install](https://raw.githubusercontent.com/python-poetry/poetry/main/assets/install.gif) Poetry replaces `setup.py`, `requirements.txt`, `setup.cfg`, `MANIFEST.in` and `Pipfile` with a simple `pyproject.toml` based project format. ```toml [build-system] requires = ["poetry-core>=2.0.0,<3.0.0"] build-backend = "poetry.core.masonry.api" [project] name = "my-package" version =... ## AI interpretation — verify before relying Poetry is a dependency management and packaging tool that replaces setup.py, requirements.txt, and Pipfile with a unified pyproject.toml-based workflow for declaring, locking, and installing Python project dependencies. Verdict: Poetry is a mature, actively maintained dependency-management tool with no known vulnerabilities and permissive MIT licensing. Its 22 runtime dependencies reflect comprehensive feature coverage (virtual environments, keyring integration, git support via dulwich, HTTP requests). Suitable for production use. [View on SkillFed](https://skillfed.io/packages/poetry) · [View on PyPI](https://pypi.org/project/poetry/)