ntasker 1.2.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ntasker/__init__.py ADDED
@@ -0,0 +1,12 @@
1
+ """ntasker — lightweight local task tracker.
2
+
3
+ Single-user FastAPI + SQLite app, bound to 127.0.0.1. Distributed as a
4
+ PyPA-standard src-layout package; CLI entry point ``ntasker`` is wired
5
+ in ``pyproject.toml`` and dispatches to :mod:`ntasker.cli`.
6
+ """
7
+
8
+ from __future__ import annotations
9
+
10
+ __version__ = "1.2.3"
11
+
12
+ __all__ = ["__version__"]