- Add `coinhunter update` CLI command for pipx/pip upgrade - README: document update behavior and recommend pipx install - Dynamic version badge with cacheSeconds=60 - Version bump: 2.0.0 → 2.0.1 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
177 B
Python
9 lines
177 B
Python
"""CoinHunter V2."""
|
|
|
|
try:
|
|
from importlib.metadata import version
|
|
|
|
__version__ = version("coinhunter")
|
|
except Exception: # pragma: no cover
|
|
__version__ = "unknown"
|