Fixes "Package does not provide any executables" error when running uvx git+https://... Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
30 lines
621 B
TOML
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",
|
|
]
|