poetry-core 2.3.2


pip install poetry-core

  Latest version

Released: Mar 29, 2026


Meta
Author: Sébastien Eustace
Maintainer: Arun Babu Neelicattu
Requires Python: >=3.10, <4.0

Classifiers

Programming Language
  • Python :: 3
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13
  • Python :: 3.14

Topic
  • Software Development :: Build Tools
  • Software Development :: Libraries :: Python Modules

Poetry Core

Poetry PyPI version Python Versions License: MIT

A PEP 517 build backend implementation developed for Poetry. This project is intended to be a lightweight, fully compliant, self-contained package allowing PEP 517-compatible build frontends to build Poetry-managed projects.

Usage

In most cases, the usage of this package is transparent to the end-user as it is either used by Poetry itself or a PEP 517 frontend (eg: pip).

In order to enable the use of poetry-core as your build backend, the following snippet must be present in your project's pyproject.toml file.

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

Once this is present, a PEP 517 frontend like pip can build and install your project from source without the need for Poetry or any of its dependencies (besides poetry-core).

# install to current environment
pip install /path/to/poetry/managed/project

# build a wheel package
pip wheel /path/to/poetry/managed/project

Why is this required?

Prior to the release of version 1.1.0, Poetry was a project management tool that included a PEP 517 build backend. This was inefficient and time consuming when a PEP 517 build was required. For example, both pip and tox (with isolated builds) would install Poetry and all dependencies it required. Most of these dependencies are not required when the objective is to simply build either a source or binary distribution of your project.

In order to improve the above situation, poetry-core was created. Shared functionality pertaining to PEP 517 build backends, including reading pyproject.toml and building wheel/sdist, were implemented in this package. This makes PEP 517 builds extremely fast for Poetry-managed packages.

Contributing

Contributing is similar to the main poetry repo:

# For example:
poetry install
poetry run pytest

For full documentation, see the full contributing documentation.

2.3.2 Mar 29, 2026
2.3.1 Feb 01, 2026
2.3.0 Jan 18, 2026
2.2.1 Sep 21, 2025
2.2.0 Sep 14, 2025
2.1.3 May 04, 2025
2.1.2 Mar 29, 2025
2.1.1 Feb 16, 2025
2.1.0 Feb 15, 2025
2.0.1 Jan 11, 2025
2.0.0 Jan 04, 2025
1.9.1 Oct 13, 2024
1.9.0 Feb 02, 2024
1.8.1 Oct 31, 2023
1.8.0 Oct 31, 2023
1.7.0 Aug 20, 2023
1.6.1 May 29, 2023
1.6.0 May 14, 2023
1.5.2 Mar 13, 2023
1.5.1 Feb 20, 2023
1.5.0 Jan 28, 2023
1.4.0 Nov 22, 2022
1.3.2 Oct 07, 2022
1.3.1 Oct 05, 2022
1.3.0 Oct 05, 2022
1.2.0 Sep 16, 2022
1.1.0 Aug 31, 2022
1.1.0rc3 Aug 26, 2022
1.1.0rc2 Aug 26, 2022
1.1.0rc1 Aug 17, 2022
1.1.0b3 Jul 12, 2022
1.1.0b2 May 24, 2022
1.1.0b1 May 23, 2022
1.1.0a7 Mar 05, 2022
1.1.0a6 Jul 30, 2021
1.1.0a5 May 21, 2021
1.1.0a4 May 03, 2021
1.1.0a3 Apr 09, 2021
1.1.0a2 Apr 08, 2021
1.1.0a1 Mar 30, 2021
1.0.8 Feb 28, 2022
1.0.7 Oct 04, 2021
1.0.6 Sep 21, 2021
1.0.5 Sep 18, 2021
1.0.4 Aug 19, 2021
1.0.3 Apr 09, 2021
1.0.2 Feb 05, 2021
1.0.1 Feb 05, 2021
1.0.0 Sep 30, 2020
1.0.0rc3 Sep 30, 2020
1.0.0rc2 Sep 25, 2020
1.0.0rc1 Sep 25, 2020
1.0.0b1 Sep 18, 2020
1.0.0a9 Jul 24, 2020
1.0.0a8 Jun 26, 2020
1.0.0a7 Jun 05, 2020
1.0.0a6 Apr 24, 2020
1.0.0a5 Mar 27, 2020
1.0.0a4 Mar 20, 2020
1.0.0a3 Mar 20, 2020
1.0.0a2 Mar 13, 2020
1.0.0a1 Feb 16, 2020
1.0.0a0 Feb 07, 2020

Wheel compatibility matrix

Platform Python 3
any

Files in release

No dependencies