initial commit
This commit is contained in:
commit
1a12e6d3c5
19 changed files with 494 additions and 0 deletions
10
src/pen_tracker.egg-info/PKG-INFO
Normal file
10
src/pen_tracker.egg-info/PKG-INFO
Normal 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
|
||||
13
src/pen_tracker.egg-info/SOURCES.txt
Normal file
13
src/pen_tracker.egg-info/SOURCES.txt
Normal 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
|
||||
1
src/pen_tracker.egg-info/dependency_links.txt
Normal file
1
src/pen_tracker.egg-info/dependency_links.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
|
||||
3
src/pen_tracker.egg-info/entry_points.txt
Normal file
3
src/pen_tracker.egg-info/entry_points.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[console_scripts]
|
||||
pen-tracker = pen_tracker.cli:main
|
||||
pen-tui = pen_tracker.tui:main
|
||||
1
src/pen_tracker.egg-info/requires.txt
Normal file
1
src/pen_tracker.egg-info/requires.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
textual
|
||||
1
src/pen_tracker.egg-info/top_level.txt
Normal file
1
src/pen_tracker.egg-info/top_level.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
pen_tracker
|
||||
Loading…
Add table
Add a link
Reference in a new issue