23 lines
454 B
TOML
23 lines
454 B
TOML
[project]
|
|
name = "custom-font-tap"
|
|
version = "0.1.0"
|
|
description = "CLI and tooling for the custom font Homebrew tap"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"pytest>=7.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
add-font = "tap_cli.main:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["tap_cli"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|