Set up pre-commit with basic hooks (trailing whitespace, end-of-file, large files) and ty for type checking via uvx. Fix type error in test where root.find() could return None. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
578 B
TOML
27 lines
578 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"]
|
|
|
|
[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",
|
|
]
|