Skip to content

Commit 62655d9

Browse files
Merge pull request #5 from gregory-halverson-jpl/main
fixing imports
2 parents ec34f16 + 51a613c commit 62655d9

File tree

5 files changed

+39
-18
lines changed

5 files changed

+39
-18
lines changed

harmonized_landsat_sentinel/HLS.py

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from .HLS import *
1+
from .harmonized_landsat_sentinel import *
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import logging
2+
from os.path import dirname, abspath, join
3+
4+
from .constants import *
5+
from .exceptions import *
6+
from .daterange import *
7+
from .earliest_datetime import *
8+
from .get_CMR_granule_ID import *
9+
from .HLS_CMR_query import *
10+
from .HLS1_connection import *
11+
from .HLS_granule_ID import *
12+
from .HLS_granule import *
13+
from .HLS_landsat_granule import *
14+
from .HLS_sentinel_granule import *
15+
from .HLS1_CMR_connection import *
16+
from .HLS1_connection import *
17+
from .HLS1_granule import *
18+
from .HLS1_landsat_granule import *
19+
from .HLS1_sentinel_granule import *
20+
from .HLS2_CMR_connection import *
21+
from .HLS2_CMR_login import *
22+
from .HLS2_granule import *
23+
from .HLS2_landsat_granule import *
24+
from .HLS2_sentinel_granule import *
25+
from .latest_datetime import *
26+
from .timer import *
27+
28+
with open(join(abspath(dirname(__file__)), "version.txt")) as f:
29+
version = f.read()
30+
31+
__version__ = version
32+
__author__ = "Gregory H. Halverson, Evan Davis"
33+
34+
logger = logging.getLogger(__name__)
35+
36+
HLS2Connection = HLS2CMRConnection
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.1
1+
1.1.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "harmonized_landsat_sentinel"
7-
version = "1.0.1"
7+
version = "1.1.0"
88
description = "Harmonized Landsat Sentinel (HLS) search and download utility"
99
readme = "README.md"
1010
authors = [

0 commit comments

Comments
 (0)