github.com/google/osv-scalibr@v0.4.1/guidedremediation/internal/manifest/python/testdata/pipfile/want.Pipfile (about) 1 [[source]] 2 url = "https://pypi.org/simple" 3 verify_ssl = true 4 name = "pypi" 5 6 [packages] 7 # Simple version specification 8 requests="*" # Any version 9 flask="==2.0.2" # Exact version 10 numpy=">=2.0.0,<3.0.0" # Version range 11 pandas=">=1.4.0,<2.0.0" # Compatible release 12 13 # Extended syntax with additional options 14 django = {version = ">=3.2", extras = ["bcrypt"]} 15 sentry-sdk = {version = ">=1.0.0", extras = ["flask"]} 16 17 # Git repositories 18 flask-login = {git = "https://github.com/maxcountryman/flask-login.git", ref = "master"} 19 20 # Local paths 21 my-package = {path = "./path/to/local/package", editable = true} 22 23 # Platform-specific dependencies 24 gunicorn = {version = "*", markers = "sys_platform == 'linux'"} 25 waitress = {version = "*", markers = "sys_platform == 'win32'"} 26 27 # Index-specific packages 28 private-package = {version = "*", index = "private"} 29 30 [dev-packages] 31 pytest = ">=6.0.0" 32 black = "==22.0.0" 33 mypy = "*" 34 sphinx = {version = ">=4.0.0", extras = ["docs"]}