github.com/anchore/syft@v1.38.2/syft/pkg/cataloger/python/test-fixtures/poetry/conflicting-with-extras/pyproject.toml (about)

     1  [tool.poetry]
     2  name = "testpkg"
     3  version = "0.1.0"
     4  description = ""
     5  authors = ["Alex Goodman <wagoodman@users.noreply.github.com>"]
     6  readme = "README.md"
     7  
     8  [tool.poetry.dependencies]
     9  python = "^3.11"
    10  httpx = {extras = ["brotli", "http2", "socks"], version = "^0.27.0"}
    11  pygments = "1.6"
    12  click = "<8"
    13  rich = "<10"
    14  
    15  [build-system]
    16  requires = ["poetry-core"]
    17  build-backend = "poetry.core.masonry.api"