Skip to content

Commit

Permalink
ENH: added init example
Browse files Browse the repository at this point in the history
Added an example init file.
  • Loading branch information
aburrell committed Sep 13, 2023
1 parent 58f2e77 commit 4678452
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions PACKAGENAME/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"""Core library for PACKAGENAME.
DESCRIPTION.
"""

try:
from importlib import metadata
except ImportError:
import importlib_metadata as metadata

from PACKAGENAME import instruments # noqa F401

__version__ = metadata.version('PACKAGENAME')

0 comments on commit 4678452

Please sign in to comment.