1
0
Fork 0
mirror of https://github.com/imjasonh/terraform-playground synced 2026-07-13 09:56:56 +00:00
terraform-playground/pymage/example/pyproject.toml
Jason Hall d587263759 lots of changes
Signed-off-by: Jason Hall <jason.hall@anysphere.co>
2026-06-10 17:05:36 -04:00

30 lines
643 B
TOML

[project]
name = "example"
version = "0.1.0"
description = "Sample FastAPI service built with pymage"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"fastapi",
"uvicorn[standard]",
"httpx",
"pydantic",
"rich",
"click",
]
[project.scripts]
example = "example:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/example"]
[tool.pymage]
repo = "ttl.sh/pymage" # uncomment and set your destination registry
base = "cgr.dev/chainguard/python:latest"
platforms = ["linux/amd64", "linux/arm64"]
layer-strategy = "per-wheel"