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

View file

@ -0,0 +1,10 @@
Metadata-Version: 2.4
Name: pen-tracker
Version: 0.1.2
Summary: A fountain pen collection tracker.
Author-email: Don Harper <don@donharper.org>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: textual
Dynamic: license-file

View file

@ -0,0 +1,13 @@
LICENSE
README.md
pyproject.toml
src/pen_tracker/__init__.py
src/pen_tracker/cli.py
src/pen_tracker/engine.py
src/pen_tracker/tui.py
src/pen_tracker.egg-info/PKG-INFO
src/pen_tracker.egg-info/SOURCES.txt
src/pen_tracker.egg-info/dependency_links.txt
src/pen_tracker.egg-info/entry_points.txt
src/pen_tracker.egg-info/requires.txt
src/pen_tracker.egg-info/top_level.txt

View file

@ -0,0 +1 @@

View file

@ -0,0 +1,3 @@
[console_scripts]
pen-tracker = pen_tracker.cli:main
pen-tui = pen_tracker.tui:main

View file

@ -0,0 +1 @@
textual

View file

@ -0,0 +1 @@
pen_tracker