initial commit

This commit is contained in:
Don Harper 2026-04-26 22:33:44 -05:00
commit 1a12e6d3c5
19 changed files with 494 additions and 0 deletions

23
pyproject.toml Normal file
View file

@ -0,0 +1,23 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pen-tracker"
version = "0.1.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"]