mirror of
https://github.com/imjasonh/terraform-playground
synced 2026-07-13 09:56:56 +00:00
30 lines
643 B
TOML
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"
|