IsPipPyproject checks if the application is a pip pyproject.
(ctx *gcp.Context)
| 544 | // PipInstallPyproject installs dependencies from a pyproject.toml file in the current directory. |
| 545 | func PipInstallPyproject(ctx *gcp.Context, l *libcnb.Layer) error { |
| 546 | ctx.Logf("Installing application dependencies from pyproject.toml.") |
| 547 | currentPythonVersion, err := Version(ctx) |
| 548 | if err != nil { |
| 549 | return err |
| 550 | } |
| 551 | hash, cached, err := cache.HashAndCheck(ctx, l, dependencyHashKey, |