- Added CLI functionality for adding, editing, viewing, and deleting fountain pens. - Introduced TUI using Textual for a more interactive experience. - Created Pen and PenTracker classes to manage pen data and CSV storage. - Implemented input validation for date fields. - Added export functionality to JSON format. - Updated project version to 0.2.0. - Added unit tests for PenTracker functionality.
23 lines
473 B
TOML
23 lines
473 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pen-tracker"
|
|
version = "0.2.0"
|
|
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"]
|