firewxpy 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.
- firewxpy-1.0/LICENSE +21 -0
- firewxpy-1.0/PKG-INFO +83 -0
- firewxpy-1.0/README.md +66 -0
- firewxpy-1.0/firewxpy.egg-info/PKG-INFO +83 -0
- firewxpy-1.0/firewxpy.egg-info/SOURCES.txt +26 -0
- firewxpy-1.0/firewxpy.egg-info/dependency_links.txt +1 -0
- firewxpy-1.0/firewxpy.egg-info/requires.txt +12 -0
- firewxpy-1.0/firewxpy.egg-info/top_level.txt +1 -0
- firewxpy-1.0/pyproject.toml +37 -0
- firewxpy-1.0/setup.cfg +4 -0
- firewxpy-1.0/setup.py +30 -0
- firewxpy-1.0/src/NWS_Forecast_Graphics.py +12516 -0
- firewxpy-1.0/src/NWS_Hot_Dry_And_Windy_Forecast_Graphics.py +740 -0
- firewxpy-1.0/src/Real_Time_Mesoscale_Analysis_Graphics_Alaska.py +11066 -0
- firewxpy-1.0/src/Real_Time_Mesoscale_Analysis_Graphics_CONUS.py +8225 -0
- firewxpy-1.0/src/Real_Time_Mesoscale_Analysis_Graphics_Islands.py +2856 -0
- firewxpy-1.0/src/SPC_Outlook_Graphics.py +1212 -0
- firewxpy-1.0/src/__init__.py +1 -0
- firewxpy-1.0/src/calc.py +567 -0
- firewxpy-1.0/src/colormaps.py +96 -0
- firewxpy-1.0/src/data_access.py +6453 -0
- firewxpy-1.0/src/firewxpy.py +12 -0
- firewxpy-1.0/src/geometry.py +239 -0
- firewxpy-1.0/src/observations_graphics.py +232 -0
- firewxpy-1.0/src/parsers.py +1401 -0
- firewxpy-1.0/src/settings.py +2781 -0
- firewxpy-1.0/src/standard.py +117 -0
- firewxpy-1.0/src/utilities.py +1076 -0
firewxpy-1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Eric J. Drewitz
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
firewxpy-1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: firewxpy
|
|
3
|
+
Version: 1.0
|
|
4
|
+
Summary: Weather Analysis and Forecasting For Fire Weather
|
|
5
|
+
Author: Eric J Drewitz, USDA/USFS
|
|
6
|
+
Keywords: meteorology,science,data-analysis,weather,forecasting
|
|
7
|
+
Classifier: Programming Language :: Python
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Requires-Python: >=3.8
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
License-File: LICENSE
|
|
17
|
+
|
|
18
|
+
# FireWxPy
|
|
19
|
+
|
|
20
|
+
Thank you for checking out FireWxPy! A user friendly Python package to create visualizations of data specific to fire weather and fire weather forecasting.
|
|
21
|
+
|
|
22
|
+
This repository consists of functions to make plots of weather data with an emphasis on fire weather.
|
|
23
|
+
|
|
24
|
+
This open source project will help meteorologists download, sort and plot both analysis and forecast data.
|
|
25
|
+
|
|
26
|
+
This package focuses on fire weather, however some modules will be universally useful across the entire field of meteorology.
|
|
27
|
+
|
|
28
|
+
This package makes it easier for users to access and parse through the 2.5km × 2.5km Real Time Mesoscale Analysis data from the UCAR THREDDS server.
|
|
29
|
+
|
|
30
|
+
This package makes it easier for users to access and parse through the National Weather Service NDFD gridded forecast data.
|
|
31
|
+
|
|
32
|
+
This package makes it easier for users to automate their weather graphics since the plotting functions of FireWxPy handle different run times so users will be able to automate their scripts in either the Windows Task Scheduler or a Cron Job.
|
|
33
|
+
|
|
34
|
+
Copyright (C) Meteorologist Eric J. Drewitz 2024
|
|
35
|
+
|
|
36
|
+
# Inspiration
|
|
37
|
+
This package is largely inspired by the MetPy package which was developed and is currently being maintained by Unidata (please see citation below in the citations section).
|
|
38
|
+
|
|
39
|
+
# Python Module Dependencies
|
|
40
|
+
1. PyGrib
|
|
41
|
+
2. Xarray
|
|
42
|
+
3. os
|
|
43
|
+
4. ftplib
|
|
44
|
+
5. MetPy
|
|
45
|
+
6. Siphon
|
|
46
|
+
7. NumPy
|
|
47
|
+
8. cartopy
|
|
48
|
+
9. Pandas
|
|
49
|
+
|
|
50
|
+
# FireWxPy Documentation
|
|
51
|
+
https://github.com/edrewitz/FireWxPy/blob/main/FireWxPy_docs.md
|
|
52
|
+
|
|
53
|
+
# Author
|
|
54
|
+
Eric J. Drewitz
|
|
55
|
+
|
|
56
|
+
USDA/USFS Meteorologist
|
|
57
|
+
|
|
58
|
+
Southern California Geographic Area Coordination Center
|
|
59
|
+
|
|
60
|
+
# Citations
|
|
61
|
+
|
|
62
|
+
**MetPy**: May, R. M., Goebbert, K. H., Thielen, J. E., Leeman, J. R., Camron, M. D., Bruick, Z.,
|
|
63
|
+
Bruning, E. C., Manser, R. P., Arms, S. C., and Marsh, P. T., 2022: MetPy: A
|
|
64
|
+
Meteorological Python Library for Data Analysis and Visualization. Bull. Amer. Meteor.
|
|
65
|
+
Soc., 103, E2273-E2284, https://doi.org/10.1175/BAMS-D-21-0125.1.
|
|
66
|
+
|
|
67
|
+
**xarray**: Hoyer, S., Hamman, J. (In revision). Xarray: N-D labeled arrays and datasets in Python. Journal of Open Research Software.
|
|
68
|
+
|
|
69
|
+
**pygrib**: Jeff Whitaker, daryl herzmann, Eric Engle, Josef Kemetmüller, Hugo van Kemenade, Martin Zackrisson, Jos de Kloe, Hrobjartur Thorsteinsson, Ryan May, Benjamin R. J. Schwedler, OKAMURA Kazuhide, ME-Mark-O, Mike Romberg, Ryan Grout, Tim Hopper, asellappenIBM, Hiroaki Itoh, Magnus Hagdorn, & Filipe. (2021). jswhit/pygrib: version 2.1.4 release (v2.1.4rel). Zenodo. https://doi.org/10.5281/zenodo.5514317
|
|
70
|
+
|
|
71
|
+
**siphon**: May, R. M., Arms, S. C., Leeman, J. R., and Chastang, J., 2017:
|
|
72
|
+
Siphon: A collection of Python Utilities for Accessing Remote Atmospheric
|
|
73
|
+
and Oceanic Datasets. Unidata, Accessed 30 September 2017.
|
|
74
|
+
[Available online at https://github.com/Unidata/siphon.]
|
|
75
|
+
doi:10.5065/D6CN72NW.
|
|
76
|
+
|
|
77
|
+
**cartopy**: Phil Elson, Elliott Sales de Andrade, Greg Lucas, Ryan May, Richard Hattersley, Ed Campbell, Andrew Dawson, Bill Little, Stephane Raynaud, scmc72, Alan D. Snow, Ruth Comer, Kevin Donkers, Byron Blay, Peter Killick, Nat Wilson, Patrick Peglar, lgolston, lbdreyer, … Chris Havlin. (2023). SciTools/cartopy: v0.22.0 (v0.22.0). Zenodo. https://doi.org/10.5281/zenodo.8216315
|
|
78
|
+
|
|
79
|
+
**NumPy**: Harris, C.R., Millman, K.J., van der Walt, S.J. et al. Array programming with NumPy. Nature 585, 357–362 (2020). DOI: 10.1038/s41586-020-2649-2. (Publisher link).
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
firewxpy-1.0/README.md
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# FireWxPy
|
|
2
|
+
|
|
3
|
+
Thank you for checking out FireWxPy! A user friendly Python package to create visualizations of data specific to fire weather and fire weather forecasting.
|
|
4
|
+
|
|
5
|
+
This repository consists of functions to make plots of weather data with an emphasis on fire weather.
|
|
6
|
+
|
|
7
|
+
This open source project will help meteorologists download, sort and plot both analysis and forecast data.
|
|
8
|
+
|
|
9
|
+
This package focuses on fire weather, however some modules will be universally useful across the entire field of meteorology.
|
|
10
|
+
|
|
11
|
+
This package makes it easier for users to access and parse through the 2.5km × 2.5km Real Time Mesoscale Analysis data from the UCAR THREDDS server.
|
|
12
|
+
|
|
13
|
+
This package makes it easier for users to access and parse through the National Weather Service NDFD gridded forecast data.
|
|
14
|
+
|
|
15
|
+
This package makes it easier for users to automate their weather graphics since the plotting functions of FireWxPy handle different run times so users will be able to automate their scripts in either the Windows Task Scheduler or a Cron Job.
|
|
16
|
+
|
|
17
|
+
Copyright (C) Meteorologist Eric J. Drewitz 2024
|
|
18
|
+
|
|
19
|
+
# Inspiration
|
|
20
|
+
This package is largely inspired by the MetPy package which was developed and is currently being maintained by Unidata (please see citation below in the citations section).
|
|
21
|
+
|
|
22
|
+
# Python Module Dependencies
|
|
23
|
+
1. PyGrib
|
|
24
|
+
2. Xarray
|
|
25
|
+
3. os
|
|
26
|
+
4. ftplib
|
|
27
|
+
5. MetPy
|
|
28
|
+
6. Siphon
|
|
29
|
+
7. NumPy
|
|
30
|
+
8. cartopy
|
|
31
|
+
9. Pandas
|
|
32
|
+
|
|
33
|
+
# FireWxPy Documentation
|
|
34
|
+
https://github.com/edrewitz/FireWxPy/blob/main/FireWxPy_docs.md
|
|
35
|
+
|
|
36
|
+
# Author
|
|
37
|
+
Eric J. Drewitz
|
|
38
|
+
|
|
39
|
+
USDA/USFS Meteorologist
|
|
40
|
+
|
|
41
|
+
Southern California Geographic Area Coordination Center
|
|
42
|
+
|
|
43
|
+
# Citations
|
|
44
|
+
|
|
45
|
+
**MetPy**: May, R. M., Goebbert, K. H., Thielen, J. E., Leeman, J. R., Camron, M. D., Bruick, Z.,
|
|
46
|
+
Bruning, E. C., Manser, R. P., Arms, S. C., and Marsh, P. T., 2022: MetPy: A
|
|
47
|
+
Meteorological Python Library for Data Analysis and Visualization. Bull. Amer. Meteor.
|
|
48
|
+
Soc., 103, E2273-E2284, https://doi.org/10.1175/BAMS-D-21-0125.1.
|
|
49
|
+
|
|
50
|
+
**xarray**: Hoyer, S., Hamman, J. (In revision). Xarray: N-D labeled arrays and datasets in Python. Journal of Open Research Software.
|
|
51
|
+
|
|
52
|
+
**pygrib**: Jeff Whitaker, daryl herzmann, Eric Engle, Josef Kemetmüller, Hugo van Kemenade, Martin Zackrisson, Jos de Kloe, Hrobjartur Thorsteinsson, Ryan May, Benjamin R. J. Schwedler, OKAMURA Kazuhide, ME-Mark-O, Mike Romberg, Ryan Grout, Tim Hopper, asellappenIBM, Hiroaki Itoh, Magnus Hagdorn, & Filipe. (2021). jswhit/pygrib: version 2.1.4 release (v2.1.4rel). Zenodo. https://doi.org/10.5281/zenodo.5514317
|
|
53
|
+
|
|
54
|
+
**siphon**: May, R. M., Arms, S. C., Leeman, J. R., and Chastang, J., 2017:
|
|
55
|
+
Siphon: A collection of Python Utilities for Accessing Remote Atmospheric
|
|
56
|
+
and Oceanic Datasets. Unidata, Accessed 30 September 2017.
|
|
57
|
+
[Available online at https://github.com/Unidata/siphon.]
|
|
58
|
+
doi:10.5065/D6CN72NW.
|
|
59
|
+
|
|
60
|
+
**cartopy**: Phil Elson, Elliott Sales de Andrade, Greg Lucas, Ryan May, Richard Hattersley, Ed Campbell, Andrew Dawson, Bill Little, Stephane Raynaud, scmc72, Alan D. Snow, Ruth Comer, Kevin Donkers, Byron Blay, Peter Killick, Nat Wilson, Patrick Peglar, lgolston, lbdreyer, … Chris Havlin. (2023). SciTools/cartopy: v0.22.0 (v0.22.0). Zenodo. https://doi.org/10.5281/zenodo.8216315
|
|
61
|
+
|
|
62
|
+
**NumPy**: Harris, C.R., Millman, K.J., van der Walt, S.J. et al. Array programming with NumPy. Nature 585, 357–362 (2020). DOI: 10.1038/s41586-020-2649-2. (Publisher link).
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: firewxpy
|
|
3
|
+
Version: 1.0
|
|
4
|
+
Summary: Weather Analysis and Forecasting For Fire Weather
|
|
5
|
+
Author: Eric J Drewitz, USDA/USFS
|
|
6
|
+
Keywords: meteorology,science,data-analysis,weather,forecasting
|
|
7
|
+
Classifier: Programming Language :: Python
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Requires-Python: >=3.8
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
License-File: LICENSE
|
|
17
|
+
|
|
18
|
+
# FireWxPy
|
|
19
|
+
|
|
20
|
+
Thank you for checking out FireWxPy! A user friendly Python package to create visualizations of data specific to fire weather and fire weather forecasting.
|
|
21
|
+
|
|
22
|
+
This repository consists of functions to make plots of weather data with an emphasis on fire weather.
|
|
23
|
+
|
|
24
|
+
This open source project will help meteorologists download, sort and plot both analysis and forecast data.
|
|
25
|
+
|
|
26
|
+
This package focuses on fire weather, however some modules will be universally useful across the entire field of meteorology.
|
|
27
|
+
|
|
28
|
+
This package makes it easier for users to access and parse through the 2.5km × 2.5km Real Time Mesoscale Analysis data from the UCAR THREDDS server.
|
|
29
|
+
|
|
30
|
+
This package makes it easier for users to access and parse through the National Weather Service NDFD gridded forecast data.
|
|
31
|
+
|
|
32
|
+
This package makes it easier for users to automate their weather graphics since the plotting functions of FireWxPy handle different run times so users will be able to automate their scripts in either the Windows Task Scheduler or a Cron Job.
|
|
33
|
+
|
|
34
|
+
Copyright (C) Meteorologist Eric J. Drewitz 2024
|
|
35
|
+
|
|
36
|
+
# Inspiration
|
|
37
|
+
This package is largely inspired by the MetPy package which was developed and is currently being maintained by Unidata (please see citation below in the citations section).
|
|
38
|
+
|
|
39
|
+
# Python Module Dependencies
|
|
40
|
+
1. PyGrib
|
|
41
|
+
2. Xarray
|
|
42
|
+
3. os
|
|
43
|
+
4. ftplib
|
|
44
|
+
5. MetPy
|
|
45
|
+
6. Siphon
|
|
46
|
+
7. NumPy
|
|
47
|
+
8. cartopy
|
|
48
|
+
9. Pandas
|
|
49
|
+
|
|
50
|
+
# FireWxPy Documentation
|
|
51
|
+
https://github.com/edrewitz/FireWxPy/blob/main/FireWxPy_docs.md
|
|
52
|
+
|
|
53
|
+
# Author
|
|
54
|
+
Eric J. Drewitz
|
|
55
|
+
|
|
56
|
+
USDA/USFS Meteorologist
|
|
57
|
+
|
|
58
|
+
Southern California Geographic Area Coordination Center
|
|
59
|
+
|
|
60
|
+
# Citations
|
|
61
|
+
|
|
62
|
+
**MetPy**: May, R. M., Goebbert, K. H., Thielen, J. E., Leeman, J. R., Camron, M. D., Bruick, Z.,
|
|
63
|
+
Bruning, E. C., Manser, R. P., Arms, S. C., and Marsh, P. T., 2022: MetPy: A
|
|
64
|
+
Meteorological Python Library for Data Analysis and Visualization. Bull. Amer. Meteor.
|
|
65
|
+
Soc., 103, E2273-E2284, https://doi.org/10.1175/BAMS-D-21-0125.1.
|
|
66
|
+
|
|
67
|
+
**xarray**: Hoyer, S., Hamman, J. (In revision). Xarray: N-D labeled arrays and datasets in Python. Journal of Open Research Software.
|
|
68
|
+
|
|
69
|
+
**pygrib**: Jeff Whitaker, daryl herzmann, Eric Engle, Josef Kemetmüller, Hugo van Kemenade, Martin Zackrisson, Jos de Kloe, Hrobjartur Thorsteinsson, Ryan May, Benjamin R. J. Schwedler, OKAMURA Kazuhide, ME-Mark-O, Mike Romberg, Ryan Grout, Tim Hopper, asellappenIBM, Hiroaki Itoh, Magnus Hagdorn, & Filipe. (2021). jswhit/pygrib: version 2.1.4 release (v2.1.4rel). Zenodo. https://doi.org/10.5281/zenodo.5514317
|
|
70
|
+
|
|
71
|
+
**siphon**: May, R. M., Arms, S. C., Leeman, J. R., and Chastang, J., 2017:
|
|
72
|
+
Siphon: A collection of Python Utilities for Accessing Remote Atmospheric
|
|
73
|
+
and Oceanic Datasets. Unidata, Accessed 30 September 2017.
|
|
74
|
+
[Available online at https://github.com/Unidata/siphon.]
|
|
75
|
+
doi:10.5065/D6CN72NW.
|
|
76
|
+
|
|
77
|
+
**cartopy**: Phil Elson, Elliott Sales de Andrade, Greg Lucas, Ryan May, Richard Hattersley, Ed Campbell, Andrew Dawson, Bill Little, Stephane Raynaud, scmc72, Alan D. Snow, Ruth Comer, Kevin Donkers, Byron Blay, Peter Killick, Nat Wilson, Patrick Peglar, lgolston, lbdreyer, … Chris Havlin. (2023). SciTools/cartopy: v0.22.0 (v0.22.0). Zenodo. https://doi.org/10.5281/zenodo.8216315
|
|
78
|
+
|
|
79
|
+
**NumPy**: Harris, C.R., Millman, K.J., van der Walt, S.J. et al. Array programming with NumPy. Nature 585, 357–362 (2020). DOI: 10.1038/s41586-020-2649-2. (Publisher link).
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
setup.py
|
|
5
|
+
firewxpy.egg-info/PKG-INFO
|
|
6
|
+
firewxpy.egg-info/SOURCES.txt
|
|
7
|
+
firewxpy.egg-info/dependency_links.txt
|
|
8
|
+
firewxpy.egg-info/requires.txt
|
|
9
|
+
firewxpy.egg-info/top_level.txt
|
|
10
|
+
src/NWS_Forecast_Graphics.py
|
|
11
|
+
src/NWS_Hot_Dry_And_Windy_Forecast_Graphics.py
|
|
12
|
+
src/Real_Time_Mesoscale_Analysis_Graphics_Alaska.py
|
|
13
|
+
src/Real_Time_Mesoscale_Analysis_Graphics_CONUS.py
|
|
14
|
+
src/Real_Time_Mesoscale_Analysis_Graphics_Islands.py
|
|
15
|
+
src/SPC_Outlook_Graphics.py
|
|
16
|
+
src/__init__.py
|
|
17
|
+
src/calc.py
|
|
18
|
+
src/colormaps.py
|
|
19
|
+
src/data_access.py
|
|
20
|
+
src/firewxpy.py
|
|
21
|
+
src/geometry.py
|
|
22
|
+
src/observations_graphics.py
|
|
23
|
+
src/parsers.py
|
|
24
|
+
src/settings.py
|
|
25
|
+
src/standard.py
|
|
26
|
+
src/utilities.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
src
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "firewxpy"
|
|
7
|
+
version = "1.00"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="Eric J Drewitz, USDA/USFS"},
|
|
10
|
+
]
|
|
11
|
+
description = "Weather Analysis and Forecasting For Fire Weather"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
keywords = ["meteorology", "science", "data-analysis", "weather", "forecasting"]
|
|
14
|
+
requires-python = ">=3.8"
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Programming Language :: Python",
|
|
17
|
+
"Programming Language :: Python :: 3.10",
|
|
18
|
+
"Programming Language :: Python :: 3.11",
|
|
19
|
+
"Topic :: Scientific/Engineering",
|
|
20
|
+
"Topic :: Scientific/Engineering :: Atmospheric Science",
|
|
21
|
+
"Operating System :: OS Independent",
|
|
22
|
+
"License :: OSI Approved :: MIT License",
|
|
23
|
+
]
|
|
24
|
+
dependencies = [
|
|
25
|
+
"matplotlib>=3.7",
|
|
26
|
+
"metpy>=1.5.1",
|
|
27
|
+
"netcdf4>=1.7.1",
|
|
28
|
+
"numpy>=1.24",
|
|
29
|
+
"pandas>=2",
|
|
30
|
+
"siphon>=0.9",
|
|
31
|
+
"xarray>=2023.1.0",
|
|
32
|
+
"pysolar>=0.11",
|
|
33
|
+
"pygrib>=2.1.4",
|
|
34
|
+
"cfgrib>=0.9.10.4",
|
|
35
|
+
"cartopy>=0.21.0",
|
|
36
|
+
"imageio>=2.34.0"
|
|
37
|
+
]
|
firewxpy-1.0/setup.cfg
ADDED
firewxpy-1.0/setup.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
from setuptools import setup, find_packages
|
|
3
|
+
|
|
4
|
+
if sys.version_info[0] < 3:
|
|
5
|
+
print("ERROR: User is running Python 2.7.\nTo use FireWxPy, the user must be using Python 3.")
|
|
6
|
+
|
|
7
|
+
setup(
|
|
8
|
+
name = "firewxpy",
|
|
9
|
+
version = "1.0.0",
|
|
10
|
+
packages = find_packages(),
|
|
11
|
+
install_requires=[
|
|
12
|
+
"matplotlib>=3.7",
|
|
13
|
+
"metpy>=1.5.1",
|
|
14
|
+
"netcdf4>=1.7.1",
|
|
15
|
+
"numpy>=1.24",
|
|
16
|
+
"pandas>=2",
|
|
17
|
+
"siphon>=0.9",
|
|
18
|
+
"xarray>=2023.1.0",
|
|
19
|
+
"pysolar>=0.11",
|
|
20
|
+
"pygrib>=2.1.4",
|
|
21
|
+
"cfgrib>=0.9.10.4",
|
|
22
|
+
"cartopy>=0.21.0",
|
|
23
|
+
"imageio>=2.34.0",
|
|
24
|
+
],
|
|
25
|
+
author="Eric J. Drewitz",
|
|
26
|
+
description="Provides automated weather graphics with a focus on fire weather.",
|
|
27
|
+
long_description=open("README.md").read(),
|
|
28
|
+
long_description_content_type="text/markdown"
|
|
29
|
+
|
|
30
|
+
)
|