20 lines
422 B
TOML
20 lines
422 B
TOML
[project]
|
|
name = "compose"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [{ name = "Christian Camper", email = "ccamper7@gmail.com" }]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"basedpyright>=1.36.1",
|
|
"pyyaml>=6.0.3",
|
|
"ruff>=0.14.9",
|
|
]
|
|
|
|
[project.scripts]
|
|
compose = "compose:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.9.17,<0.10.0"]
|
|
build-backend = "uv_build"
|