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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: goesgcp
3
- Version: 2.0.8
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.8
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
@@ -9,5 +9,6 @@ goesgcp/main.py
9
9
  goesgcp.egg-info/PKG-INFO
10
10
  goesgcp.egg-info/SOURCES.txt
11
11
  goesgcp.egg-info/dependency_links.txt
12
+ goesgcp.egg-info/entry_points.txt
12
13
  goesgcp.egg-info/requires.txt
13
14
  goesgcp.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ goesgcp = goesgcp.main:main
@@ -18,7 +18,7 @@ else:
18
18
 
19
19
  setup(
20
20
  name="goesgcp",
21
- version="2.0.8",
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
- "Topic :: Scientific/Engineering :: Atmospheric Science",
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