{
  "result": {
    "1.8.5": {
      "name": "poetry",
      "version": "1.8.5",
      "metadata_version": "2.1",
      "summary": "Python dependency management and packaging made easy.",
      "home_page": "https://python-poetry.org/",
      "author": "S\u00e9bastien Eustace",
      "author_email": "sebastien@eustace.io",
      "maintainer": "Arun Babu Neelicattu",
      "maintainer_email": "arun.neelicattu@gmail.com",
      "license": "MIT",
      "description": "# Poetry: Python packaging and dependency management made easy\n\n[![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/)\n[![Stable Version](https://img.shields.io/pypi/v/poetry?label=stable)][PyPI Releases]\n[![Pre-release Version](https://img.shields.io/github/v/release/python-poetry/poetry?label=pre-release&include_prereleases&sort=semver)][PyPI Releases]\n[![Python Versions](https://img.shields.io/pypi/pyversions/poetry)][PyPI]\n[![Download Stats](https://img.shields.io/pypi/dm/poetry)](https://pypistats.org/packages/poetry)\n[![Discord](https://img.shields.io/discord/487711540787675139?logo=discord)][Discord]\n\nPoetry helps you declare, manage and install dependencies of Python projects,\nensuring you have the right stack everywhere.\n\n![Poetry Install](https://raw.githubusercontent.com/python-poetry/poetry/master/assets/install.gif)\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[tool.poetry]\nname = \"my-package\"\nversion = \"0.1.0\"\ndescription = \"The description of the package\"\n\nlicense = \"MIT\"\n\nauthors = [\n    \"S\u00e9bastien Eustace <sebastien@eustace.io>\"\n]\n\nrepository = \"https://github.com/python-poetry/poetry\"\nhomepage = \"https://python-poetry.org\"\n\n# README file(s) are used as the package description\nreadme = [\"README.md\", \"LICENSE\"]\n\n# Keywords (translated to tags on the package index)\nkeywords = [\"packaging\", \"poetry\"]\n\n[tool.poetry.dependencies]\n# Compatible Python versions\npython = \">=3.8\"\n# Standard dependency with semver constraints\naiohttp = \"^3.8.1\"\n# Dependency with extras\nrequests = { version = \"^2.28\", extras = [\"security\"] }\n# Version-specific dependencies with prereleases allowed\ntomli = { version = \"^2.0.1\", python = \"<3.11\", allow-prereleases = true }\n# Git dependencies\ncleo = { git = \"https://github.com/python-poetry/cleo.git\", branch = \"main\" }\n# Optional dependencies (installed by extras)\npendulum = { version = \"^2.1.2\", optional = 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[tool.poetry.group.docs]\noptional = true\n[tool.poetry.group.docs.dependencies]\nSphinx = \"^5.1.1\"\n\n# Python-style entrypoints and scripts are easily expressed\n[tool.poetry.scripts]\nmy-script = \"my_package:main\"\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",
      "keywords": "packaging,dependency,poetry",
      "platform": [],
      "classifiers": [
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Programming Language :: Python :: 3.13",
        "Topic :: Software Development :: Build Tools",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Environment :: MetaData :: IBM Python Ecosystem"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "project_urls": [
        "Changelog, https://python-poetry.org/history/",
        "Documentation, https://python-poetry.org/docs",
        "Repository, https://github.com/python-poetry/poetry"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "requires_dist": [
        "build (>=1.0.3,<2.0.0)",
        "cachecontrol[filecache] (>=0.14.0,<0.15.0)",
        "cleo (>=2.1.0,<3.0.0)",
        "crashtest (>=0.4.1,<0.5.0)",
        "dulwich (>=0.21.2,<0.22.0)",
        "fastjsonschema (>=2.18.0,<3.0.0)",
        "importlib-metadata (>=4.4) ; python_version < \"3.10\"",
        "installer (>=0.7.0,<0.8.0)",
        "keyring (>=24.0.0,<25.0.0)",
        "packaging (>=23.1)",
        "pexpect (>=4.7.0,<5.0.0)",
        "pkginfo (>=1.12,<2.0)",
        "platformdirs (>=3.0.0,<5)",
        "poetry-core (==1.9.1)",
        "poetry-plugin-export (>=1.6.0,<2.0.0)",
        "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,<21.0.0)",
        "xattr (>=1.0.0,<2.0.0) ; sys_platform == \"darwin\""
      ],
      "requires_external": [],
      "requires_python": ">=3.8,<4.0",
      "description_content_type": "text/markdown",
      "provides_extras": [],
      "dynamic": [],
      "license_expression": "",
      "license_file": [],
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=5b66e53baada3b42e08b5b94c67fe226ae3223e86724c559560ad1a2d4047d79",
          "hashes": {
            "sha256": "5b66e53baada3b42e08b5b94c67fe226ae3223e86724c559560ad1a2d4047d79"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/5b6/6e53baada3b42/poetry-1.8.5-py3-none-any.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                13,
                1,
                12
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    },
    "2.3.4": {
      "name": "poetry",
      "version": "2.3.4",
      "metadata_version": "2.4",
      "summary": "Python dependency management and packaging made easy.",
      "home_page": "",
      "author": "S\u00e9bastien Eustace",
      "author_email": "sebastien@eustace.io",
      "maintainer": "Arun Babu Neelicattu",
      "maintainer_email": "arun.neelicattu@gmail.com",
      "license": "",
      "description": "# Poetry: Python packaging and dependency management made easy\n\n[![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/)\n[![Stable Version](https://img.shields.io/pypi/v/poetry?label=stable)][PyPI Releases]\n[![Pre-release Version](https://img.shields.io/github/v/release/python-poetry/poetry?label=pre-release&include_prereleases&sort=semver)][PyPI Releases]\n[![Python Versions](https://img.shields.io/pypi/pyversions/poetry)][PyPI]\n[![Download Stats](https://img.shields.io/pypi/dm/poetry)](https://pypistats.org/packages/poetry)\n[![Discord](https://img.shields.io/discord/487711540787675139?logo=discord)][Discord]\n\nPoetry helps you declare, manage and install dependencies of Python projects,\nensuring you have the right stack everywhere.\n\n![Poetry Install](https://raw.githubusercontent.com/python-poetry/poetry/main/assets/install.gif)\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",
      "keywords": "packaging,dependency,poetry",
      "platform": [],
      "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"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "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"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "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_external": [],
      "requires_python": ">=3.10,<4.0",
      "description_content_type": "text/markdown",
      "provides_extras": [],
      "dynamic": [],
      "license_expression": "MIT",
      "license_file": [
        "LICENSE"
      ],
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=7e6653be7b15b02b81417fef1ef6c1234f8327d3c0e0fa2db312809919818cb2",
          "hashes": {
            "sha256": "7e6653be7b15b02b81417fef1ef6c1234f8327d3c0e0fa2db312809919818cb2"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/7e6/653be7b15b02b/poetry-2.3.4-py3-none-any.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                13,
                1,
                12
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    },
    "1.8.5+ppc64le1": {
      "name": "poetry",
      "version": "1.8.5+ppc64le1",
      "metadata_version": "2.1",
      "summary": "Python dependency management and packaging made easy.",
      "home_page": "https://python-poetry.org/",
      "author": "S\u00e9bastien Eustace",
      "author_email": "sebastien@eustace.io",
      "maintainer": "Arun Babu Neelicattu",
      "maintainer_email": "arun.neelicattu@gmail.com",
      "license": "MIT",
      "description": "# Poetry: Python packaging and dependency management made easy\n\n[![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/)\n[![Stable Version](https://img.shields.io/pypi/v/poetry?label=stable)][PyPI Releases]\n[![Pre-release Version](https://img.shields.io/github/v/release/python-poetry/poetry?label=pre-release&include_prereleases&sort=semver)][PyPI Releases]\n[![Python Versions](https://img.shields.io/pypi/pyversions/poetry)][PyPI]\n[![Download Stats](https://img.shields.io/pypi/dm/poetry)](https://pypistats.org/packages/poetry)\n[![Discord](https://img.shields.io/discord/487711540787675139?logo=discord)][Discord]\n\nPoetry helps you declare, manage and install dependencies of Python projects,\nensuring you have the right stack everywhere.\n\n![Poetry Install](https://raw.githubusercontent.com/python-poetry/poetry/master/assets/install.gif)\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[tool.poetry]\nname = \"my-package\"\nversion = \"0.1.0\"\ndescription = \"The description of the package\"\n\nlicense = \"MIT\"\n\nauthors = [\n    \"S\u00e9bastien Eustace <sebastien@eustace.io>\"\n]\n\nrepository = \"https://github.com/python-poetry/poetry\"\nhomepage = \"https://python-poetry.org\"\n\n# README file(s) are used as the package description\nreadme = [\"README.md\", \"LICENSE\"]\n\n# Keywords (translated to tags on the package index)\nkeywords = [\"packaging\", \"poetry\"]\n\n[tool.poetry.dependencies]\n# Compatible Python versions\npython = \">=3.8\"\n# Standard dependency with semver constraints\naiohttp = \"^3.8.1\"\n# Dependency with extras\nrequests = { version = \"^2.28\", extras = [\"security\"] }\n# Version-specific dependencies with prereleases allowed\ntomli = { version = \"^2.0.1\", python = \"<3.11\", allow-prereleases = true }\n# Git dependencies\ncleo = { git = \"https://github.com/python-poetry/cleo.git\", branch = \"main\" }\n# Optional dependencies (installed by extras)\npendulum = { version = \"^2.1.2\", optional = 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[tool.poetry.group.docs]\noptional = true\n[tool.poetry.group.docs.dependencies]\nSphinx = \"^5.1.1\"\n\n# Python-style entrypoints and scripts are easily expressed\n[tool.poetry.scripts]\nmy-script = \"my_package:main\"\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",
      "keywords": "packaging,dependency,poetry",
      "platform": [],
      "classifiers": [
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Programming Language :: Python :: 3.13",
        "Topic :: Software Development :: Build Tools",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Environment :: MetaData :: IBM Python Ecosystem"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "project_urls": [
        "Changelog, https://python-poetry.org/history/",
        "Documentation, https://python-poetry.org/docs",
        "Repository, https://github.com/python-poetry/poetry"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "requires_dist": [
        "build (>=1.0.3,<2.0.0)",
        "cachecontrol[filecache] (>=0.14.0,<0.15.0)",
        "cleo (>=2.1.0,<3.0.0)",
        "crashtest (>=0.4.1,<0.5.0)",
        "dulwich (>=0.21.2,<0.22.0)",
        "fastjsonschema (>=2.18.0,<3.0.0)",
        "importlib-metadata (>=4.4) ; python_version < \"3.10\"",
        "installer (>=0.7.0,<0.8.0)",
        "keyring (>=24.0.0,<25.0.0)",
        "packaging (>=23.1)",
        "pexpect (>=4.7.0,<5.0.0)",
        "pkginfo (>=1.12,<2.0)",
        "platformdirs (>=3.0.0,<5)",
        "poetry-core (==1.9.1)",
        "poetry-plugin-export (>=1.6.0,<2.0.0)",
        "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,<21.0.0)",
        "xattr (>=1.0.0,<2.0.0) ; sys_platform == \"darwin\""
      ],
      "requires_external": [],
      "requires_python": ">=3.8,<4.0",
      "description_content_type": "text/markdown",
      "provides_extras": "",
      "dynamic": "",
      "license_expression": "",
      "license_file": "",
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=a495ba474e90e81eb6b197c096e24b348e3f90bcca8f3781c2d2eb6a2e005c30",
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/a49/5ba474e90e81e/poetry-1.8.5+ppc64le1-py3-none-any.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                3,
                16,
                9,
                29,
                38
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    },
    "1.8.3": {
      "name": "poetry",
      "version": "1.8.3",
      "metadata_version": "2.1",
      "summary": "Python dependency management and packaging made easy.",
      "home_page": "https://python-poetry.org/",
      "author": "S\u00e9bastien Eustace",
      "author_email": "sebastien@eustace.io",
      "maintainer": "Arun Babu Neelicattu",
      "maintainer_email": "arun.neelicattu@gmail.com",
      "license": "MIT",
      "description": "# Poetry: Python packaging and dependency management made easy\n\n[![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/)\n[![Stable Version](https://img.shields.io/pypi/v/poetry?label=stable)][PyPI Releases]\n[![Pre-release Version](https://img.shields.io/github/v/release/python-poetry/poetry?label=pre-release&include_prereleases&sort=semver)][PyPI Releases]\n[![Python Versions](https://img.shields.io/pypi/pyversions/poetry)][PyPI]\n[![Download Stats](https://img.shields.io/pypi/dm/poetry)](https://pypistats.org/packages/poetry)\n[![Discord](https://img.shields.io/discord/487711540787675139?logo=discord)][Discord]\n\nPoetry helps you declare, manage and install dependencies of Python projects,\nensuring you have the right stack everywhere.\n\n![Poetry Install](https://raw.githubusercontent.com/python-poetry/poetry/master/assets/install.gif)\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[tool.poetry]\nname = \"my-package\"\nversion = \"0.1.0\"\ndescription = \"The description of the package\"\n\nlicense = \"MIT\"\n\nauthors = [\n    \"S\u00e9bastien Eustace <sebastien@eustace.io>\"\n]\n\nrepository = \"https://github.com/python-poetry/poetry\"\nhomepage = \"https://python-poetry.org\"\n\n# README file(s) are used as the package description\nreadme = [\"README.md\", \"LICENSE\"]\n\n# Keywords (translated to tags on the package index)\nkeywords = [\"packaging\", \"poetry\"]\n\n[tool.poetry.dependencies]\n# Compatible Python versions\npython = \">=3.8\"\n# Standard dependency with semver constraints\naiohttp = \"^3.8.1\"\n# Dependency with extras\nrequests = { version = \"^2.28\", extras = [\"security\"] }\n# Version-specific dependencies with prereleases allowed\ntomli = { version = \"^2.0.1\", python = \"<3.11\", allow-prereleases = true }\n# Git dependencies\ncleo = { git = \"https://github.com/python-poetry/cleo.git\", branch = \"main\" }\n# Optional dependencies (installed by extras)\npendulum = { version = \"^2.1.2\", optional = 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[tool.poetry.group.docs]\noptional = true\n[tool.poetry.group.docs.dependencies]\nSphinx = \"^5.1.1\"\n\n# Python-style entrypoints and scripts are easily expressed\n[tool.poetry.scripts]\nmy-script = \"my_package:main\"\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",
      "keywords": "packaging,dependency,poetry",
      "platform": [],
      "classifiers": [
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Topic :: Software Development :: Build Tools",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Environment :: MetaData :: IBM Python Ecosystem"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "project_urls": [
        "Changelog, https://python-poetry.org/history/",
        "Documentation, https://python-poetry.org/docs",
        "Repository, https://github.com/python-poetry/poetry"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "requires_dist": [
        "build (>=1.0.3,<2.0.0)",
        "cachecontrol[filecache] (>=0.14.0,<0.15.0)",
        "cleo (>=2.1.0,<3.0.0)",
        "crashtest (>=0.4.1,<0.5.0)",
        "dulwich (>=0.21.2,<0.22.0)",
        "fastjsonschema (>=2.18.0,<3.0.0)",
        "importlib-metadata (>=4.4) ; python_version < \"3.10\"",
        "installer (>=0.7.0,<0.8.0)",
        "keyring (>=24.0.0,<25.0.0)",
        "packaging (>=23.1)",
        "pexpect (>=4.7.0,<5.0.0)",
        "pkginfo (>=1.10,<2.0)",
        "platformdirs (>=3.0.0,<5)",
        "poetry-core (==1.9.0)",
        "poetry-plugin-export (>=1.6.0,<2.0.0)",
        "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.23.0,<21.0.0)",
        "xattr (>=1.0.0,<2.0.0) ; sys_platform == \"darwin\""
      ],
      "requires_external": [],
      "requires_python": ">=3.8,<4.0",
      "description_content_type": "text/markdown",
      "provides_extras": [],
      "dynamic": [],
      "license_expression": "",
      "license_file": [],
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=448f1530b911b4270fb2f4f103f120a22c1612eb87a04ac58835d788fa4c0d13",
          "hashes": {
            "sha256": "448f1530b911b4270fb2f4f103f120a22c1612eb87a04ac58835d788fa4c0d13"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/448/f1530b911b427/poetry-1.8.3-py3-none-any.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                13,
                1,
                11
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    },
    "1.8.3+ppc64le1": {
      "name": "poetry",
      "version": "1.8.3+ppc64le1",
      "metadata_version": "2.1",
      "summary": "Python dependency management and packaging made easy.",
      "home_page": "https://python-poetry.org/",
      "author": "S\u00e9bastien Eustace",
      "author_email": "sebastien@eustace.io",
      "maintainer": "Arun Babu Neelicattu",
      "maintainer_email": "arun.neelicattu@gmail.com",
      "license": "MIT",
      "description": "# Poetry: Python packaging and dependency management made easy\n\n[![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/)\n[![Stable Version](https://img.shields.io/pypi/v/poetry?label=stable)][PyPI Releases]\n[![Pre-release Version](https://img.shields.io/github/v/release/python-poetry/poetry?label=pre-release&include_prereleases&sort=semver)][PyPI Releases]\n[![Python Versions](https://img.shields.io/pypi/pyversions/poetry)][PyPI]\n[![Download Stats](https://img.shields.io/pypi/dm/poetry)](https://pypistats.org/packages/poetry)\n[![Discord](https://img.shields.io/discord/487711540787675139?logo=discord)][Discord]\n\nPoetry helps you declare, manage and install dependencies of Python projects,\nensuring you have the right stack everywhere.\n\n![Poetry Install](https://raw.githubusercontent.com/python-poetry/poetry/master/assets/install.gif)\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[tool.poetry]\nname = \"my-package\"\nversion = \"0.1.0\"\ndescription = \"The description of the package\"\n\nlicense = \"MIT\"\n\nauthors = [\n    \"S\u00e9bastien Eustace <sebastien@eustace.io>\"\n]\n\nrepository = \"https://github.com/python-poetry/poetry\"\nhomepage = \"https://python-poetry.org\"\n\n# README file(s) are used as the package description\nreadme = [\"README.md\", \"LICENSE\"]\n\n# Keywords (translated to tags on the package index)\nkeywords = [\"packaging\", \"poetry\"]\n\n[tool.poetry.dependencies]\n# Compatible Python versions\npython = \">=3.8\"\n# Standard dependency with semver constraints\naiohttp = \"^3.8.1\"\n# Dependency with extras\nrequests = { version = \"^2.28\", extras = [\"security\"] }\n# Version-specific dependencies with prereleases allowed\ntomli = { version = \"^2.0.1\", python = \"<3.11\", allow-prereleases = true }\n# Git dependencies\ncleo = { git = \"https://github.com/python-poetry/cleo.git\", branch = \"main\" }\n# Optional dependencies (installed by extras)\npendulum = { version = \"^2.1.2\", optional = 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[tool.poetry.group.docs]\noptional = true\n[tool.poetry.group.docs.dependencies]\nSphinx = \"^5.1.1\"\n\n# Python-style entrypoints and scripts are easily expressed\n[tool.poetry.scripts]\nmy-script = \"my_package:main\"\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",
      "keywords": "packaging,dependency,poetry",
      "platform": [],
      "classifiers": [
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Topic :: Software Development :: Build Tools",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Environment :: MetaData :: IBM Python Ecosystem"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "project_urls": [
        "Changelog, https://python-poetry.org/history/",
        "Documentation, https://python-poetry.org/docs",
        "Repository, https://github.com/python-poetry/poetry"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "requires_dist": [
        "build (>=1.0.3,<2.0.0)",
        "cachecontrol[filecache] (>=0.14.0,<0.15.0)",
        "cleo (>=2.1.0,<3.0.0)",
        "crashtest (>=0.4.1,<0.5.0)",
        "dulwich (>=0.21.2,<0.22.0)",
        "fastjsonschema (>=2.18.0,<3.0.0)",
        "importlib-metadata (>=4.4) ; python_version < \"3.10\"",
        "installer (>=0.7.0,<0.8.0)",
        "keyring (>=24.0.0,<25.0.0)",
        "packaging (>=23.1)",
        "pexpect (>=4.7.0,<5.0.0)",
        "pkginfo (>=1.10,<2.0)",
        "platformdirs (>=3.0.0,<5)",
        "poetry-core (==1.9.0)",
        "poetry-plugin-export (>=1.6.0,<2.0.0)",
        "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.23.0,<21.0.0)",
        "xattr (>=1.0.0,<2.0.0) ; sys_platform == \"darwin\""
      ],
      "requires_external": [],
      "requires_python": ">=3.8,<4.0",
      "description_content_type": "text/markdown",
      "provides_extras": "",
      "dynamic": "",
      "license_expression": "",
      "license_file": "",
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=ccf9959c65156d0f6c6b6b436a4734f573430c445f53d7dc1685190b6b3a622e",
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/ccf/9959c65156d0f/poetry-1.8.3+ppc64le1-py3-none-any.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                3,
                16,
                9,
                29,
                38
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    },
    "2.3.4+ppc64le1": {
      "name": "poetry",
      "version": "2.3.4+ppc64le1",
      "metadata_version": "2.4",
      "summary": "Python dependency management and packaging made easy.",
      "home_page": "",
      "author": "S\u00e9bastien Eustace",
      "author_email": "sebastien@eustace.io",
      "maintainer": "Arun Babu Neelicattu",
      "maintainer_email": "arun.neelicattu@gmail.com",
      "license": "",
      "description": "# Poetry: Python packaging and dependency management made easy\n\n[![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/)\n[![Stable Version](https://img.shields.io/pypi/v/poetry?label=stable)][PyPI Releases]\n[![Pre-release Version](https://img.shields.io/github/v/release/python-poetry/poetry?label=pre-release&include_prereleases&sort=semver)][PyPI Releases]\n[![Python Versions](https://img.shields.io/pypi/pyversions/poetry)][PyPI]\n[![Download Stats](https://img.shields.io/pypi/dm/poetry)](https://pypistats.org/packages/poetry)\n[![Discord](https://img.shields.io/discord/487711540787675139?logo=discord)][Discord]\n\nPoetry helps you declare, manage and install dependencies of Python projects,\nensuring you have the right stack everywhere.\n\n![Poetry Install](https://raw.githubusercontent.com/python-poetry/poetry/main/assets/install.gif)\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",
      "keywords": "packaging,dependency,poetry",
      "platform": [],
      "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"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "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"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "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_external": [],
      "requires_python": ">=3.10,<4.0",
      "description_content_type": "text/markdown",
      "provides_extras": [],
      "dynamic": [],
      "license_expression": "MIT",
      "license_file": [
        "LICENSE"
      ],
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=cd7d71539f65d721c6bd1312713916b6ceb03e5e26222626293f4c899160d210",
          "hashes": {
            "sha256": "cd7d71539f65d721c6bd1312713916b6ceb03e5e26222626293f4c899160d210"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/cd7/d71539f65d721/poetry-2.3.4+ppc64le1-py3-none-any.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                5,
                11,
                11,
                47,
                24
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    },
    "2.3.3+ppc64le1": {
      "name": "poetry",
      "version": "2.3.3+ppc64le1",
      "metadata_version": "2.4",
      "summary": "Python dependency management and packaging made easy.",
      "home_page": "",
      "author": "S\u00e9bastien Eustace",
      "author_email": "sebastien@eustace.io",
      "maintainer": "Arun Babu Neelicattu",
      "maintainer_email": "arun.neelicattu@gmail.com",
      "license": "",
      "description": "# Poetry: Python packaging and dependency management made easy\n\n[![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/)\n[![Stable Version](https://img.shields.io/pypi/v/poetry?label=stable)][PyPI Releases]\n[![Pre-release Version](https://img.shields.io/github/v/release/python-poetry/poetry?label=pre-release&include_prereleases&sort=semver)][PyPI Releases]\n[![Python Versions](https://img.shields.io/pypi/pyversions/poetry)][PyPI]\n[![Download Stats](https://img.shields.io/pypi/dm/poetry)](https://pypistats.org/packages/poetry)\n[![Discord](https://img.shields.io/discord/487711540787675139?logo=discord)][Discord]\n\nPoetry helps you declare, manage and install dependencies of Python projects,\nensuring you have the right stack everywhere.\n\n![Poetry Install](https://raw.githubusercontent.com/python-poetry/poetry/main/assets/install.gif)\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",
      "keywords": "packaging,dependency,poetry",
      "platform": [],
      "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"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "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"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "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_external": [],
      "requires_python": ">=3.10,<4.0",
      "description_content_type": "text/markdown",
      "provides_extras": [],
      "dynamic": [],
      "license_expression": "MIT",
      "license_file": [
        "LICENSE"
      ],
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=e8486e3b9f414a97325086cfa3e6b7805c4f678f851af8136ecb2ce1869c7195",
          "hashes": {
            "sha256": "e8486e3b9f414a97325086cfa3e6b7805c4f678f851af8136ecb2ce1869c7195"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/e84/86e3b9f414a97/poetry-2.3.3+ppc64le1-py3-none-any.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                5,
                11,
                11,
                47,
                24
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    },
    "2.3.3": {
      "name": "poetry",
      "version": "2.3.3",
      "metadata_version": "2.4",
      "summary": "Python dependency management and packaging made easy.",
      "home_page": "",
      "author": "S\u00e9bastien Eustace",
      "author_email": "sebastien@eustace.io",
      "maintainer": "Arun Babu Neelicattu",
      "maintainer_email": "arun.neelicattu@gmail.com",
      "license": "",
      "description": "# Poetry: Python packaging and dependency management made easy\n\n[![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/)\n[![Stable Version](https://img.shields.io/pypi/v/poetry?label=stable)][PyPI Releases]\n[![Pre-release Version](https://img.shields.io/github/v/release/python-poetry/poetry?label=pre-release&include_prereleases&sort=semver)][PyPI Releases]\n[![Python Versions](https://img.shields.io/pypi/pyversions/poetry)][PyPI]\n[![Download Stats](https://img.shields.io/pypi/dm/poetry)](https://pypistats.org/packages/poetry)\n[![Discord](https://img.shields.io/discord/487711540787675139?logo=discord)][Discord]\n\nPoetry helps you declare, manage and install dependencies of Python projects,\nensuring you have the right stack everywhere.\n\n![Poetry Install](https://raw.githubusercontent.com/python-poetry/poetry/main/assets/install.gif)\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",
      "keywords": "packaging,dependency,poetry",
      "platform": [],
      "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"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "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"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "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_external": [],
      "requires_python": ">=3.10,<4.0",
      "description_content_type": "text/markdown",
      "provides_extras": [],
      "dynamic": [],
      "license_expression": "MIT",
      "license_file": [
        "LICENSE"
      ],
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=f01379cd3bf31eec48afeecab7dd0bc2d351b7df2dbd81c5cf75de6b1a128a7c",
          "hashes": {
            "sha256": "f01379cd3bf31eec48afeecab7dd0bc2d351b7df2dbd81c5cf75de6b1a128a7c"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/f01/379cd3bf31eec/poetry-2.3.3-py3-none-any.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                13,
                1,
                12
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    }
  },
  "type": "projectconfig"
}
