ppc64le/linux/: poetry-2.3.3+ppc64le1 metadata and description

Simple index Newer version available

Python dependency management and packaging made easy.

author Sébastien Eustace
author_email [email protected]
classifiers
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Programming Language :: Python :: 3.13
  • Programming Language :: Python :: 3.14
  • Topic :: Software Development :: Build Tools
  • Topic :: Software Development :: Libraries :: Python Modules
  • Environment :: MetaData :: IBM Python Ecosystem
description_content_type text/markdown
keywords packaging,dependency,poetry
license_expression MIT
license_file
  • LICENSE
maintainer Arun Babu Neelicattu
maintainer_email [email protected]
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
requires_dist
  • build (>=1.2.1,<2.0.0)
  • cachecontrol[filecache] (>=0.14.0,<0.15.0)
  • cleo (>=2.1.0,<3.0.0)
  • dulwich (>=0.25.0,<2)
  • fastjsonschema (>=2.18.0,<3.0.0)
  • findpython (>=0.6.2,<0.8.0)
  • installer (>=0.7.0,<0.8.0)
  • keyring (>=25.1.0,<26.0.0)
  • packaging (>=24.2)
  • pbs-installer[download,install] (>=2025.6.10)
  • pkginfo (>=1.12,<2.0)
  • platformdirs (>=3.0.0,<5)
  • poetry-core (==2.3.2)
  • pyproject-hooks (>=1.0.0,<2.0.0)
  • requests (>=2.26,<3.0)
  • requests-toolbelt (>=1.0.0,<2.0.0)
  • shellingham (>=1.5,<2.0)
  • tomli (>=2.0.1,<3.0.0) ; python_version < "3.11"
  • tomlkit (>=0.11.4,<1.0.0)
  • trove-classifiers (>=2022.5.19)
  • virtualenv (>=20.26.6)
  • xattr (>=1.0.0,<2.0.0) ; sys_platform == "darwin"
requires_python >=3.10,<4.0
File Tox results History
poetry-2.3.3+ppc64le1-py3-none-any.whl
Size
282 KB
Type
Python Wheel
Python
3

Poetry: Python packaging and dependency management made easy

Poetry Stable Version Pre-release Version Python Versions Download Stats Discord

Poetry helps you declare, manage and install dependencies of Python projects, ensuring you have the right stack everywhere.

Poetry Install

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 = "Sébastien Eustace", email = "[email protected]" },
]

# 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

Related Projects

Supporters

Thanks to JetBrains for supporting us with licenses for their tools.

JetBrains logo.

Export Classification Notice

The software hosted on this website consists of publicly available open‑source packages. To the extent U.S. export regulations apply, software that is publicly available as described in 15 C.F.R. §§ 734.7 (for non-encryption software) or 742.15(b) (for encryption software) is not subject to the Export Administration Regulations (EAR). Users are responsible for complying with all applicable export laws and regulations.