Files
flow/pyproject.toml

36 lines
737 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flow"
dynamic = ["version"]
description = "Action-centered CLI for dotfiles, packages, setup, dev containers, and remote targets"
readme = "README.md"
requires-python = ">=3.9"
dependencies = ["pyyaml>=6.0", "rich>=13.7", "typer>=0.12"]
[project.optional-dependencies]
build = ["pyinstaller>=6.0"]
dev = ["pytest>=7.0"]
[project.scripts]
flow = "flow.cli:main"
[tool.hatch.version]
path = "src/flow/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/flow"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source = ["src/flow"]
branch = true
[tool.coverage.report]
show_missing = true
skip_covered = false