goesgcp 2.0.8__tar.gz → 2.1.0__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.
- {goesgcp-2.0.8/goesgcp.egg-info → goesgcp-2.1.0}/PKG-INFO +4 -1
- {goesgcp-2.0.8 → goesgcp-2.1.0/goesgcp.egg-info}/PKG-INFO +4 -1
- {goesgcp-2.0.8 → goesgcp-2.1.0}/goesgcp.egg-info/SOURCES.txt +1 -0
- goesgcp-2.1.0/goesgcp.egg-info/entry_points.txt +2 -0
- {goesgcp-2.0.8 → goesgcp-2.1.0}/setup.py +12 -4
- {goesgcp-2.0.8 → goesgcp-2.1.0}/LICENSE +0 -0
- {goesgcp-2.0.8 → goesgcp-2.1.0}/MANIFEST.in +0 -0
- {goesgcp-2.0.8 → goesgcp-2.1.0}/README.md +0 -0
- {goesgcp-2.0.8 → goesgcp-2.1.0}/goesgcp/__init__.py +0 -0
- {goesgcp-2.0.8 → goesgcp-2.1.0}/goesgcp/main.py +0 -0
- {goesgcp-2.0.8 → goesgcp-2.1.0}/goesgcp.egg-info/dependency_links.txt +0 -0
- {goesgcp-2.0.8 → goesgcp-2.1.0}/goesgcp.egg-info/requires.txt +0 -0
- {goesgcp-2.0.8 → goesgcp-2.1.0}/goesgcp.egg-info/top_level.txt +0 -0
- {goesgcp-2.0.8 → goesgcp-2.1.0}/pyproject.toml +0 -0
- {goesgcp-2.0.8 → goesgcp-2.1.0}/requirements.txt +0 -0
- {goesgcp-2.0.8 → goesgcp-2.1.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: goesgcp
|
|
3
|
-
Version: 2.0
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: A package to download and process GOES-16/17 data
|
|
5
5
|
Home-page: https://github.com/helvecioneto/goesgcp
|
|
6
6
|
Author: Helvecio B. L. Neto
|
|
@@ -14,6 +14,9 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
15
|
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
|
|
16
16
|
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering
|
|
18
|
+
Classifier: Topic :: Software Development
|
|
19
|
+
Classifier: Topic :: Utilities
|
|
17
20
|
Description-Content-Type: text/markdown
|
|
18
21
|
License-File: LICENSE
|
|
19
22
|
Requires-Dist: google-cloud-storage
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: goesgcp
|
|
3
|
-
Version: 2.0
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: A package to download and process GOES-16/17 data
|
|
5
5
|
Home-page: https://github.com/helvecioneto/goesgcp
|
|
6
6
|
Author: Helvecio B. L. Neto
|
|
@@ -14,6 +14,9 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
15
|
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
|
|
16
16
|
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering
|
|
18
|
+
Classifier: Topic :: Software Development
|
|
19
|
+
Classifier: Topic :: Utilities
|
|
17
20
|
Description-Content-Type: text/markdown
|
|
18
21
|
License-File: LICENSE
|
|
19
22
|
Requires-Dist: google-cloud-storage
|
|
@@ -18,7 +18,7 @@ else:
|
|
|
18
18
|
|
|
19
19
|
setup(
|
|
20
20
|
name="goesgcp",
|
|
21
|
-
version="2.0
|
|
21
|
+
version="2.1.0",
|
|
22
22
|
author="Helvecio B. L. Neto",
|
|
23
23
|
author_email="helvecioblneto@gmail.com",
|
|
24
24
|
description="A package to download and process GOES-16/17 data",
|
|
@@ -35,7 +35,15 @@ setup(
|
|
|
35
35
|
"Programming Language :: Python :: 3.10",
|
|
36
36
|
"Programming Language :: Python :: 3.11",
|
|
37
37
|
"Programming Language :: Python :: 3.12",
|
|
38
|
-
|
|
39
|
-
"Topic :: Scientific/Engineering :: GIS"
|
|
40
|
-
|
|
38
|
+
"Topic :: Scientific/Engineering :: Atmospheric Science",
|
|
39
|
+
"Topic :: Scientific/Engineering :: GIS",
|
|
40
|
+
"Topic :: Scientific/Engineering",
|
|
41
|
+
"Topic :: Software Development",
|
|
42
|
+
"Topic :: Utilities",
|
|
43
|
+
],
|
|
44
|
+
entry_points={
|
|
45
|
+
'console_scripts': [
|
|
46
|
+
'goesgcp=goesgcp.main:main',
|
|
47
|
+
],
|
|
48
|
+
},
|
|
41
49
|
)
|
|
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
|