Skip to content

Commit

Permalink
populate __version__ (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
ViStefan authored Sep 17, 2024
1 parent 7d710bd commit 9120460
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions motleycrew/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
"""MotleyCrew root package."""
from importlib import metadata

from .crew import MotleyCrew
from .tasks import Task

try:
__version__ = metadata.version(__package__)
except metadata.PackageNotFoundError:
__version__ = ""

0 comments on commit 9120460

Please sign in to comment.