mcquack/pyproject.toml
2026-01-15 07:47:57 -08:00

30 lines
637 B
TOML

[project]
name = "mcquack"
version = "1.0.0"
description = "A simple macOS LaunchAgent manager for executable scripts"
readme = "README.md"
authors = [
{ name = "Erich Blume", email = "blume.erich@gmail.com" }
]
requires-python = ">=3.14"
dependencies = ["typer>=0.9.0", "rich>=13.0.0"]
[project.scripts]
mcquack = "mcquack:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
only-include = ["mcquack.py"]
[tool.hatch.build.targets.wheel.sources]
"mcquack.py" = "mcquack.py"
[dependency-groups]
dev = [
"pre-commit>=4.0.0",
"pytest>=9.0.2",
]