Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mmguero committed Oct 30, 2024
2 parents b33211e + bbdfe67 commit 8d9abf8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "malcolm-test"
version = "0.0.1"
version = "0.1.0"
authors = [
{ name="Seth Grover", email="[email protected]" },
]
Expand Down
13 changes: 8 additions & 5 deletions src/malcolm_test/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
"""malcolm_test"""
from importlib.metadata import version, PackageNotFoundError

__version__ = "0.0.1"
__author__ = "Seth Grover <[email protected]>"
__all__ = []
try:
__version__ = version("malcolm-test")
except PackageNotFoundError:
__version__ = None

from malcolm_test.malcolm_test import *
__all__ = ["main", "MalcolmVM"]

from .malcolm_test import main, MalcolmVM

0 comments on commit 8d9abf8

Please sign in to comment.