cubexpress 0.1.1__tar.gz → 0.1.3__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 cubexpress might be problematic. Click here for more details.
- {cubexpress-0.1.1 → cubexpress-0.1.3}/PKG-INFO +3 -2
- {cubexpress-0.1.1 → cubexpress-0.1.3}/pyproject.toml +5 -3
- {cubexpress-0.1.1 → cubexpress-0.1.3}/LICENSE +0 -0
- {cubexpress-0.1.1 → cubexpress-0.1.3}/README.md +0 -0
- {cubexpress-0.1.1 → cubexpress-0.1.3}/cubexpress/__init__.py +0 -0
- {cubexpress-0.1.1 → cubexpress-0.1.3}/cubexpress/cache.py +0 -0
- {cubexpress-0.1.1 → cubexpress-0.1.3}/cubexpress/cloud_utils.py +0 -0
- {cubexpress-0.1.1 → cubexpress-0.1.3}/cubexpress/conversion.py +0 -0
- {cubexpress-0.1.1 → cubexpress-0.1.3}/cubexpress/cube.py +0 -0
- {cubexpress-0.1.1 → cubexpress-0.1.3}/cubexpress/downloader.py +0 -0
- {cubexpress-0.1.1 → cubexpress-0.1.3}/cubexpress/geospatial.py +0 -0
- {cubexpress-0.1.1 → cubexpress-0.1.3}/cubexpress/geotyping.py +0 -0
- {cubexpress-0.1.1 → cubexpress-0.1.3}/cubexpress/request.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cubexpress
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Efficient processing of cubic Earth-observation (EO) data.
|
|
5
5
|
Home-page: https://github.com/andesdatacube/cubexpress
|
|
6
6
|
License: MIT
|
|
@@ -22,8 +22,9 @@ Requires-Dist: numpy (>=1.25.2)
|
|
|
22
22
|
Requires-Dist: pandas (>=2.0.3)
|
|
23
23
|
Requires-Dist: pyarrow (>=14.0.0) ; extra == "full"
|
|
24
24
|
Requires-Dist: pygeohash (>=1.2.0,<2.0.0)
|
|
25
|
+
Requires-Dist: pyproj (>=3.6.0)
|
|
25
26
|
Requires-Dist: rasterio (>=1.3.9) ; extra == "full"
|
|
26
|
-
Requires-Dist: utm (>=0.
|
|
27
|
+
Requires-Dist: utm (>=0.7.0,<0.9.0)
|
|
27
28
|
Project-URL: Documentation, https://andesdatacube.github.io/cubexpress
|
|
28
29
|
Project-URL: Repository, https://github.com/andesdatacube/cubexpress
|
|
29
30
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "cubexpress"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.3"
|
|
4
4
|
description = "Efficient processing of cubic Earth-observation (EO) data."
|
|
5
5
|
authors = [
|
|
6
6
|
"Julio Contreras <contrerasnetk@gmail.com>",
|
|
@@ -26,15 +26,17 @@ packages = [{ include = "cubexpress" }]
|
|
|
26
26
|
python = ">=3.9,<4.0"
|
|
27
27
|
numpy = ">=1.25.2"
|
|
28
28
|
pandas = ">=2.0.3"
|
|
29
|
-
utm = "
|
|
29
|
+
utm = ">=0.7.0,<0.9.0"
|
|
30
30
|
pygeohash = "^1.2.0"
|
|
31
31
|
rasterio = ">=1.3.9"
|
|
32
32
|
earthengine-api = ">=0.1.392"
|
|
33
33
|
pyarrow = ">=14.0.0"
|
|
34
|
+
pyproj = ">=3.6.0"
|
|
35
|
+
|
|
34
36
|
|
|
35
37
|
# optional extras bundle everything heavy into ‘full’
|
|
36
38
|
[tool.poetry.extras]
|
|
37
|
-
full = ["rasterio", "earthengine-api", "pyarrow"]
|
|
39
|
+
full = ["rasterio", "earthengine-api", "pyarrow", "fastparquet"]
|
|
38
40
|
|
|
39
41
|
[tool.poetry.group.dev.dependencies]
|
|
40
42
|
pytest = "^7.2.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|