firewxpy 1.2__tar.gz → 1.2.2__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.2 → firewxpy-1.2.2}/PKG-INFO +1 -1
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy.egg-info/PKG-INFO +1 -1
- {firewxpy-1.2 → firewxpy-1.2.2}/pyproject.toml +2 -2
- {firewxpy-1.2 → firewxpy-1.2.2}/setup.py +3 -3
- {firewxpy-1.2 → firewxpy-1.2.2}/LICENSE +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/README.md +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/NWS_Alaska.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/NWS_CONUS.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/NWS_Hawaii.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/RTMA_Graphics_Alaska.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/RTMA_Graphics_CONUS.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/RTMA_Graphics_Hawaii.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/SPC_Outlook_Graphics.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/__init__.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/calc.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/colormaps.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/data_access.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/dims.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/geometry.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/observations.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/parsers.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/sawti.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/settings.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/solar_information.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/soundings.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/standard.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/utilities.py +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy.egg-info/SOURCES.txt +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy.egg-info/dependency_links.txt +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy.egg-info/requires.txt +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy.egg-info/top_level.txt +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/setup.cfg +0 -0
- {firewxpy-1.2 → firewxpy-1.2.2}/test/test.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
from setuptools import setup, find_packages
|
|
3
3
|
|
|
4
|
-
if sys.version_info[0] < 3
|
|
5
|
-
print("ERROR: User is running a version of Python older than Python 3
|
|
4
|
+
if sys.version_info[0] < 3:
|
|
5
|
+
print("ERROR: User is running a version of Python older than Python 3\nTo use FireWxPy, the user must be using Python 3 or newer.")
|
|
6
6
|
|
|
7
7
|
setup(
|
|
8
8
|
name = "firewxpy",
|
|
9
|
-
version = "1.2",
|
|
9
|
+
version = "1.2.2",
|
|
10
10
|
packages = find_packages(),
|
|
11
11
|
install_requires=[
|
|
12
12
|
"matplotlib>=3.7",
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|