Skip to content

Commit

Permalink
Merge pull request #7 from gregory-halverson-jpl/main
Browse files Browse the repository at this point in the history
including `__version__` attribute
  • Loading branch information
gregory-halverson authored Nov 11, 2024
2 parents 20d66c9 + 62f071f commit 9e4e5e3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions harmonized_landsat_sentinel/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
from .harmonized_landsat_sentinel import *

from os.path import join, abspath, dirname

with open(join(abspath(dirname(__file__)), "version.txt")) as f:
version = f.read()

__version__ = version
__author__ = "Gregory H. Halverson, Evan Davis"

0 comments on commit 9e4e5e3

Please sign in to comment.