mcquack/pyproject.toml
Erich Blume bb704d24ea Add script entry point for uvx installation
Fixes "Package does not provide any executables" error when running
uvx git+https://...

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-12 16:55:46 -08:00

30 lines
621 B
TOML

[project]
name = "mcquack"
version = "0.1.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"]
[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",
]