P
Poetry
Created Feb 28, 2018
by
python-poetry
Categories
Language:
Python
Stars:
34.2K
Forks:
2.4K
README
Poetry: Python packaging and dependency management made easy
[
][PyPI Releases]
[
][PyPI Releases]
[
][PyPI]
[
][Discord]
Poetry helps you declare, manage and install dependencies of Python projects, ensuring you have the right stack everywhere.

Poetry replaces setup.py, requirements.txt, setup.cfg, MANIFEST.in and Pipfile with a simple pyproject.toml
based project format.
[project]
name = "my-package"
version = "0.1.0"
description = "The description of the package"
license = { text = "MIT" }
readme = "README.md"
# No python upper bound for package metadata
requires-python = ">=3.9"
authors = [
{ name = "SeĢbastien Eustace", email = "sebastien@eustace.io" },
]
# Keywords (translated to tags on the package index)
keywords = ["packaging", "poetry"]
dependencies = [
# equivalent to ^3.8.1 with semver constraints
"aiohttp (>=3.8.1,=2.28,=2.0.1,=3.1.0,=3.9,
Last updated: Jan 21, 2026
More MCP servers built with Python
Transformers
š¤ Transformers: the model-definition framework for state-of-the-art machine learning models in text, vision, audio, and multimodal models, for both inference and training.
By huggingface
155.5K