Skip to content

Commit

Permalink
populate __version__
Browse files Browse the repository at this point in the history
  • Loading branch information
ViStefan committed Sep 17, 2024
1 parent 7d710bd commit 9c7f243
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions motleycrew/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
"""MotleyCrew root package."""

import tomllib

from .crew import MotleyCrew
from .tasks import Task

with open("pyproject.toml", "rb") as project:
__version__ = tomllib.load(project)["tool"]["poetry"]["version"]

0 comments on commit 9c7f243

Please sign in to comment.