cubexpress 0.1.3__tar.gz → 0.1.4__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.
- {cubexpress-0.1.3 → cubexpress-0.1.4}/PKG-INFO +4 -5
- {cubexpress-0.1.3 → cubexpress-0.1.4}/pyproject.toml +1 -5
- {cubexpress-0.1.3 → cubexpress-0.1.4}/LICENSE +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.4}/README.md +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.4}/cubexpress/__init__.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.4}/cubexpress/cache.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.4}/cubexpress/cloud_utils.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.4}/cubexpress/conversion.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.4}/cubexpress/cube.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.4}/cubexpress/downloader.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.4}/cubexpress/geospatial.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.4}/cubexpress/geotyping.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.4}/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.4
|
|
4
4
|
Summary: Efficient processing of cubic Earth-observation (EO) data.
|
|
5
5
|
Home-page: https://github.com/andesdatacube/cubexpress
|
|
6
6
|
License: MIT
|
|
@@ -16,14 +16,13 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
17
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
18
18
|
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
19
|
-
|
|
20
|
-
Requires-Dist: earthengine-api (>=0.1.392) ; extra == "full"
|
|
19
|
+
Requires-Dist: earthengine-api (>=0.1.392)
|
|
21
20
|
Requires-Dist: numpy (>=1.25.2)
|
|
22
21
|
Requires-Dist: pandas (>=2.0.3)
|
|
23
|
-
Requires-Dist: pyarrow (>=14.0.0)
|
|
22
|
+
Requires-Dist: pyarrow (>=14.0.0)
|
|
24
23
|
Requires-Dist: pygeohash (>=1.2.0,<2.0.0)
|
|
25
24
|
Requires-Dist: pyproj (>=3.6.0)
|
|
26
|
-
Requires-Dist: rasterio (>=1.3.9)
|
|
25
|
+
Requires-Dist: rasterio (>=1.3.9)
|
|
27
26
|
Requires-Dist: utm (>=0.7.0,<0.9.0)
|
|
28
27
|
Project-URL: Documentation, https://andesdatacube.github.io/cubexpress
|
|
29
28
|
Project-URL: Repository, https://github.com/andesdatacube/cubexpress
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "cubexpress"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.4"
|
|
4
4
|
description = "Efficient processing of cubic Earth-observation (EO) data."
|
|
5
5
|
authors = [
|
|
6
6
|
"Julio Contreras <contrerasnetk@gmail.com>",
|
|
@@ -34,10 +34,6 @@ pyarrow = ">=14.0.0"
|
|
|
34
34
|
pyproj = ">=3.6.0"
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
# optional extras bundle everything heavy into ‘full’
|
|
38
|
-
[tool.poetry.extras]
|
|
39
|
-
full = ["rasterio", "earthengine-api", "pyarrow", "fastparquet"]
|
|
40
|
-
|
|
41
37
|
[tool.poetry.group.dev.dependencies]
|
|
42
38
|
pytest = "^7.2.0"
|
|
43
39
|
pytest-cov = "^4.0.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
|