github.com/google/osv-scalibr@v0.4.1/guidedremediation/internal/manifest/python/testdata/poetry/want.pyproject.toml (about) 1 [project] 2 name = "my-project" 3 version = "1.2.3" 4 dependencies = [ 5 "requests>=2.26.0,<3.0.0", # This is a comment 6 "numpy==1.22.0", 7 "django>=3.1,<4.0; os_name != 'nt'", 8 "django>=3.0,<4.0; os_name == 'nt'" 9 ] 10 11 # Optional dependencies 12 [project.optional-dependencies] 13 dev = ["pytest>=6.2.5", "black==23.0.0"] # Another comment 14 15 [tool.poetry] 16 python = "^3.9"