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.4.1"
|
|
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"]
|