initial commit
This commit is contained in:
commit
1a12e6d3c5
19 changed files with 494 additions and 0 deletions
23
pyproject.toml
Normal file
23
pyproject.toml
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue