github.com/google/osv-scalibr@v0.4.1/guidedremediation/internal/manifest/python/testdata/poetry/pyproject.toml (about)

     1  [project]
     2  name = "my-project"
     3  version = "1.2.3"
     4  dependencies = [
     5    "requests~=2.25.1", # This is a comment
     6    "numpy==1.22.0",
     7    "django>2.1,<3.0; os_name != 'nt'",
     8    "django>2.0,<3.0; os_name == 'nt'"
     9  ]
    10  
    11  # Optional dependencies
    12  [project.optional-dependencies]
    13  dev = ["pytest>=6.2.5", "black==22.3.0"] # Another comment
    14  
    15  [tool.poetry]
    16  python = "^3.9"