Name | poetry JSON |
Version |
2.1.4
JSON |
| download |
home_page | None |
Summary | Python dependency management and packaging made easy. |
upload_time | 2025-08-05 03:54:07 |
maintainer | Arun Babu Neelicattu |
docs_url | None |
author | Sébastien Eustace |
requires_python | <4.0,>=3.9 |
license | MIT |
keywords |
packaging
dependency
poetry
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Poetry: Python packaging and dependency management made easy
[](https://python-poetry.org/)
[][PyPI Releases]
[][PyPI Releases]
[][PyPI]
[](https://pypistats.org/packages/poetry)
[][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.
```toml
[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 = "Sé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,<4.0.0)",
# dependency with extras
"requests[security] (>=2.28,<3.0)",
# version-specific dependency with prereleases allowed (see below)
"tomli (>=2.0.1,<3.0.0) ; python_version < '3.11'",
# git dependency with branch specified
"cleo @ git+https://github.com/python-poetry/cleo.git@main",
]
[project.urls]
repository = "https://github.com/python-poetry/poetry"
homepage = "https://python-poetry.org"
# Scripts are easily expressed
[project.scripts]
my_package_cli = 'my_package.console:run'
[project.optional-dependencies]
# optional dependency to be installed via 'poetry install -E my-extra'
my-extra = ["pendulum (>=3.1.0,<4.0.0)"]
[tool.poetry.dependencies]
# Python upper bound for locking
python = ">=3.9,<4.0"
# Version-specific dependencies with prereleases allowed
tomli = { allow-prereleases = true }
# Dependency groups are supported for organizing your dependencies
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.2"
pytest-cov = "^3.0"
# ...and can be installed only when explicitly requested
# via 'poetry install --with docs'
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = "^5.1.1"
```
## Installation
Poetry supports multiple installation methods, including a simple script found at [install.python-poetry.org]. For full
installation instructions, including advanced usage of the script, alternate install methods, and CI best practices, see
the full [installation documentation].
## Documentation
[Documentation] for the current version of Poetry (as well as the development branch and recently out of support
versions) is available from the [official website].
## Contribute
Poetry is a large, complex project always in need of contributors. For those new to the project, a list of
[suggested issues] to work on in Poetry and poetry-core is available. The full [contributing documentation] also
provides helpful guidance.
## Resources
* [Releases][PyPI Releases]
* [Official Website]
* [Documentation]
* [Issue Tracker]
* [Discord]
[PyPI]: https://pypi.org/project/poetry/
[PyPI Releases]: https://pypi.org/project/poetry/#history
[Official Website]: https://python-poetry.org
[Documentation]: https://python-poetry.org/docs/
[Issue Tracker]: https://github.com/python-poetry/poetry/issues
[Suggested Issues]: https://github.com/python-poetry/poetry/contribute
[Contributing Documentation]: https://python-poetry.org/docs/contributing
[Discord]: https://discord.com/invite/awxPgve
[install.python-poetry.org]: https://install.python-poetry.org
[Installation Documentation]: https://python-poetry.org/docs/#installation
## Related Projects
* [poetry-core](https://github.com/python-poetry/poetry-core): PEP 517 build-system for Poetry projects, and
dependency-free core functionality of the Poetry frontend
* [poetry-plugin-export](https://github.com/python-poetry/poetry-plugin-export): Export Poetry projects/lock files to
foreign formats like requirements.txt
* [poetry-plugin-bundle](https://github.com/python-poetry/poetry-plugin-bundle): Install Poetry projects/lock files to
external formats like virtual environments
* [install.python-poetry.org](https://github.com/python-poetry/install.python-poetry.org): The official Poetry
installation script
* [website](https://github.com/python-poetry/website): The official Poetry website and blog
## Supporters
Thanks to [JetBrains](https://www.jetbrains.com) for supporting us with licenses for their tools.
[<img src="https://resources.jetbrains.com/storage/products/company/brand/logos/jetbrains.svg" width="150" alt="JetBrains logo." />](https://www.jetbrains.com)
Raw data
{
"_id": null,
"home_page": null,
"name": "poetry",
"maintainer": "Arun Babu Neelicattu",
"docs_url": null,
"requires_python": "<4.0,>=3.9",
"maintainer_email": "arun.neelicattu@gmail.com",
"keywords": "packaging, dependency, poetry",
"author": "S\u00e9bastien Eustace",
"author_email": "sebastien@eustace.io",
"download_url": "https://files.pythonhosted.org/packages/4e/f3/d7f0fcefd3577d01574bbc43b0e93b00fec529b9dc14f838dc4502670a08/poetry-2.1.4.tar.gz",
"platform": null,
"description": "# Poetry: Python packaging and dependency management made easy\n\n[](https://python-poetry.org/)\n[][PyPI Releases]\n[][PyPI Releases]\n[][PyPI]\n[](https://pypistats.org/packages/poetry)\n[][Discord]\n\nPoetry helps you declare, manage and install dependencies of Python projects,\nensuring you have the right stack everywhere.\n\n\n\nPoetry replaces `setup.py`, `requirements.txt`, `setup.cfg`, `MANIFEST.in` and `Pipfile` with a simple `pyproject.toml`\nbased project format.\n\n```toml\n[project]\nname = \"my-package\"\nversion = \"0.1.0\"\ndescription = \"The description of the package\"\n\nlicense = { text = \"MIT\" }\nreadme = \"README.md\"\n\n# No python upper bound for package metadata\nrequires-python = \">=3.9\"\n\nauthors = [\n { name = \"Se\u0301bastien Eustace\", email = \"sebastien@eustace.io\" },\n]\n\n# Keywords (translated to tags on the package index)\nkeywords = [\"packaging\", \"poetry\"]\n\ndependencies = [\n # equivalent to ^3.8.1 with semver constraints\n \"aiohttp (>=3.8.1,<4.0.0)\",\n # dependency with extras\n \"requests[security] (>=2.28,<3.0)\",\n # version-specific dependency with prereleases allowed (see below)\n \"tomli (>=2.0.1,<3.0.0) ; python_version < '3.11'\",\n # git dependency with branch specified\n \"cleo @ git+https://github.com/python-poetry/cleo.git@main\",\n]\n\n[project.urls]\nrepository = \"https://github.com/python-poetry/poetry\"\nhomepage = \"https://python-poetry.org\"\n\n# Scripts are easily expressed\n[project.scripts]\nmy_package_cli = 'my_package.console:run'\n\n[project.optional-dependencies]\n# optional dependency to be installed via 'poetry install -E my-extra'\nmy-extra = [\"pendulum (>=3.1.0,<4.0.0)\"]\n\n[tool.poetry.dependencies]\n# Python upper bound for locking\npython = \">=3.9,<4.0\"\n# Version-specific dependencies with prereleases allowed\ntomli = { allow-prereleases = true }\n\n# Dependency groups are supported for organizing your dependencies\n[tool.poetry.group.dev.dependencies]\npytest = \"^7.1.2\"\npytest-cov = \"^3.0\"\n\n# ...and can be installed only when explicitly requested\n# via 'poetry install --with docs'\n[tool.poetry.group.docs]\noptional = true\n[tool.poetry.group.docs.dependencies]\nSphinx = \"^5.1.1\"\n```\n\n## Installation\n\nPoetry supports multiple installation methods, including a simple script found at [install.python-poetry.org]. For full\ninstallation instructions, including advanced usage of the script, alternate install methods, and CI best practices, see\nthe full [installation documentation].\n\n## Documentation\n\n[Documentation] for the current version of Poetry (as well as the development branch and recently out of support\nversions) is available from the [official website].\n\n## Contribute\n\nPoetry is a large, complex project always in need of contributors. For those new to the project, a list of\n[suggested issues] to work on in Poetry and poetry-core is available. The full [contributing documentation] also\nprovides helpful guidance.\n\n## Resources\n\n* [Releases][PyPI Releases]\n* [Official Website]\n* [Documentation]\n* [Issue Tracker]\n* [Discord]\n\n [PyPI]: https://pypi.org/project/poetry/\n [PyPI Releases]: https://pypi.org/project/poetry/#history\n [Official Website]: https://python-poetry.org\n [Documentation]: https://python-poetry.org/docs/\n [Issue Tracker]: https://github.com/python-poetry/poetry/issues\n [Suggested Issues]: https://github.com/python-poetry/poetry/contribute\n [Contributing Documentation]: https://python-poetry.org/docs/contributing\n [Discord]: https://discord.com/invite/awxPgve\n [install.python-poetry.org]: https://install.python-poetry.org\n [Installation Documentation]: https://python-poetry.org/docs/#installation\n\n## Related Projects\n\n* [poetry-core](https://github.com/python-poetry/poetry-core): PEP 517 build-system for Poetry projects, and\ndependency-free core functionality of the Poetry frontend\n* [poetry-plugin-export](https://github.com/python-poetry/poetry-plugin-export): Export Poetry projects/lock files to\nforeign formats like requirements.txt\n* [poetry-plugin-bundle](https://github.com/python-poetry/poetry-plugin-bundle): Install Poetry projects/lock files to\nexternal formats like virtual environments\n* [install.python-poetry.org](https://github.com/python-poetry/install.python-poetry.org): The official Poetry\ninstallation script\n* [website](https://github.com/python-poetry/website): The official Poetry website and blog\n\n## Supporters\n\nThanks to [JetBrains](https://www.jetbrains.com) for supporting us with licenses for their tools.\n\n[<img src=\"https://resources.jetbrains.com/storage/products/company/brand/logos/jetbrains.svg\" width=\"150\" alt=\"JetBrains logo.\" />](https://www.jetbrains.com)\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Python dependency management and packaging made easy.",
"version": "2.1.4",
"project_urls": {
"Changelog": "https://python-poetry.org/history/",
"Documentation": "https://python-poetry.org/docs",
"Homepage": "https://python-poetry.org/",
"Repository": "https://github.com/python-poetry/poetry"
},
"split_keywords": [
"packaging",
" dependency",
" poetry"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "6d37578fe593a07daa5e4417a7965d46093a255ebd7fbb797df6959c0f378f43",
"md5": "81833e9d0d36ea2de7471bf3bc2613d2",
"sha256": "0019b64d33fed9184a332f7fad60ca47aace4d6a0e9c635cdea21b76e96f32ce"
},
"downloads": -1,
"filename": "poetry-2.1.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "81833e9d0d36ea2de7471bf3bc2613d2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.9",
"size": 278705,
"upload_time": "2025-08-05T03:54:05",
"upload_time_iso_8601": "2025-08-05T03:54:05.217588Z",
"url": "https://files.pythonhosted.org/packages/6d/37/578fe593a07daa5e4417a7965d46093a255ebd7fbb797df6959c0f378f43/poetry-2.1.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4ef3d7f0fcefd3577d01574bbc43b0e93b00fec529b9dc14f838dc4502670a08",
"md5": "f0478939030973de0bbf69eb81aa3e03",
"sha256": "bed4af5fc87fb145258ac5b1dae77de2cd7082ec494e3b2f66bca0f477cbfc5c"
},
"downloads": -1,
"filename": "poetry-2.1.4.tar.gz",
"has_sig": false,
"md5_digest": "f0478939030973de0bbf69eb81aa3e03",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.9",
"size": 3435981,
"upload_time": "2025-08-05T03:54:07",
"upload_time_iso_8601": "2025-08-05T03:54:07.057921Z",
"url": "https://files.pythonhosted.org/packages/4e/f3/d7f0fcefd3577d01574bbc43b0e93b00fec529b9dc14f838dc4502670a08/poetry-2.1.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-05 03:54:07",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "python-poetry",
"github_project": "poetry",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "poetry"
}