matplotlib-map-utils 1.0.2__tar.gz → 1.0.3__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.
Files changed (16) hide show
  1. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/PKG-INFO +1 -1
  2. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/matplotlib_map_utils/north_arrow.py +2 -2
  3. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/matplotlib_map_utils.egg-info/PKG-INFO +1 -1
  4. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/pyproject.toml +1 -1
  5. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/LICENSE +0 -0
  6. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/README.md +0 -0
  7. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/matplotlib_map_utils/__init__.py +0 -0
  8. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/matplotlib_map_utils/defaults.py +0 -0
  9. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/matplotlib_map_utils/scratch/map_utils.py +0 -0
  10. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/matplotlib_map_utils/scratch/north_arrow_old_classes.py +0 -0
  11. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/matplotlib_map_utils/validation.py +0 -0
  12. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/matplotlib_map_utils.egg-info/SOURCES.txt +0 -0
  13. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/matplotlib_map_utils.egg-info/dependency_links.txt +0 -0
  14. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/matplotlib_map_utils.egg-info/requires.txt +0 -0
  15. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/matplotlib_map_utils.egg-info/top_level.txt +0 -0
  16. {matplotlib_map_utils-1.0.2 → matplotlib_map_utils-1.0.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: matplotlib-map-utils
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: A suite of tools for creating maps in matplotlib
5
5
  Author-email: David Moss <davidmoss1221@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/moss-xyz/matplotlib-map-utils/
@@ -26,8 +26,8 @@ import matplotlib.rcsetup
26
26
  # The types we use in this script
27
27
  from typing import Literal
28
28
  # The information contained in our helper scripts (validation and defaults)
29
- import defaults
30
- import validation
29
+ from . import defaults
30
+ from . import validation
31
31
 
32
32
  ### INITIALIZATION ###
33
33
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: matplotlib-map-utils
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: A suite of tools for creating maps in matplotlib
5
5
  Author-email: David Moss <davidmoss1221@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/moss-xyz/matplotlib-map-utils/
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "matplotlib-map-utils"
7
- version = "1.0.2"
7
+ version = "1.0.3"
8
8
  authors = [
9
9
  { name="David Moss", email="davidmoss1221@gmail.com" },
10
10
  ]