satcube 0.1.6__tar.gz → 0.1.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of satcube might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: satcube
3
- Version: 0.1.6
3
+ Version: 0.1.8
4
4
  Summary: A Python package to create cloud-free monthly composites by fusing Landsat and Sentinel-2 data.
5
5
  Home-page: https://github.com/IPL-UV/satcube
6
6
  Author: Cesar Aybar
@@ -16,7 +16,7 @@ Requires-Dist: earthengine-api (>=0.1.4)
16
16
  Requires-Dist: mlstac (>=0.4.0)
17
17
  Requires-Dist: numpy (>=1.25.0)
18
18
  Requires-Dist: pandas (>=2.0.0)
19
- Requires-Dist: phicloudmask (>=0.2.0)
19
+ Requires-Dist: phicloudmask (>=0.0.2)
20
20
  Requires-Dist: pydantic (>=2.8.0)
21
21
  Requires-Dist: rasterio (>=1.3.9)
22
22
  Requires-Dist: requests (>=2.26.0)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "satcube"
3
- version = "0.1.6"
3
+ version = "0.1.8"
4
4
  description = "A Python package to create cloud-free monthly composites by fusing Landsat and Sentinel-2 data."
5
5
  authors = ["Cesar Aybar <fcesar.aybar@uv.es>"]
6
6
  repository = "https://github.com/IPL-UV/satcube"
@@ -23,7 +23,7 @@ numpy = ">=1.25.0"
23
23
  requests = ">=2.26.0"
24
24
  xarray = ">=2023.7.0"
25
25
  utm = ">=0.7.0"
26
- phicloudmask = ">=0.2.0"
26
+ phicloudmask = ">=0.0.2"
27
27
 
28
28
  [tool.poetry.extras]
29
29
  full = ["torch"]
@@ -0,0 +1,10 @@
1
+ from satcube.cloud_detection import cloud_masking
2
+ from satcube.download import download_data
3
+
4
+
5
+
6
+ __all__ = ["cloud_masking", "download_data"]
7
+
8
+ import importlib.metadata
9
+ __version__ = importlib.metadata.version("satcube")
10
+
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes