[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "hytop" dynamic = ["version"] description = "hytop toolkit" readme = "README.md" requires-python = ">=3.10" dependencies = ["rich>=13", "typer>=0.12"] [project.scripts] hytop = "hytop.main:main" hytop-bump = "hytop._bump:main" [dependency-groups] dev = ["pytest>=8", "ruff>=0.15"] [tool.hatch.version] path = "src/hytop/__init__.py" [tool.hatch.build.targets.wheel] packages = ["src/hytop"] [tool.pytest.ini_options] testpaths = ["tests"] [tool.ruff] target-version = "py310" line-length = 100 src = ["src", "tests"] [tool.ruff.lint] select = [ "F", # pyflakes "E", "W", # pycodestyle "I", # isort "UP", # pyupgrade "B", # flake8-bugbear "SIM", # flake8-simplify "RUF", # ruff-specific ]