Skip to content

Commit

Permalink
Set up the versioning system
Browse files Browse the repository at this point in the history
  • Loading branch information
mjuric committed Oct 13, 2023
1 parent 8b5261b commit f64dbbe
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/sorcha_addons/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,12 @@
"activity",
"lightcurve",
]

# Version information (autogenerated by setuptools-scm)
try:
from ._version import version as __version__
from ._version import version_tuple
except ImportError:
__version__ = "unknown version"
version_tuple = (0, 0, "unknown version")

0 comments on commit f64dbbe

Please sign in to comment.