pen-tracker/pyproject.toml
Don Harper 6476bc659c fix display of inventory
simplified code to only have one way to build table
2026-06-01 10:24:38 -05:00

23 lines
473 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pen-tracker"
version = "0.4.2"
authors = [
{ name="Don Harper", email="don@donharper.org" },
]
description = "A fountain pen collection tracker."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"textual",
]
[project.scripts]
pen-tracker = "pen_tracker.cli:main"
pen-tui = "pen_tracker.tui:main"
[tool.setuptools.packages.find]
where = ["src"]