ECOv002-calval-tables 1.3.0__tar.gz → 1.5.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.
Files changed (24) hide show
  1. ecov002_calval_tables-1.5.0/ECOv002_calval_tables/ECOv002_calval_tables.py +5 -0
  2. ecov002_calval_tables-1.5.0/ECOv002_calval_tables/ec_lib.py +736 -0
  3. ecov002_calval_tables-1.5.0/ECOv002_calval_tables/error_funcs.py +376 -0
  4. ecov002_calval_tables-1.3.0/ECOv002_calval_tables/ECOv002_calval_tables.py → ecov002_calval_tables-1.5.0/ECOv002_calval_tables/load_tables.py +2 -0
  5. ecov002_calval_tables-1.5.0/ECOv002_calval_tables/plot_funcs.py +710 -0
  6. ecov002_calval_tables-1.5.0/ECOv002_calval_tables/plot_single_model.py +69 -0
  7. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/ECOv002_calval_tables.egg-info/PKG-INFO +7 -1
  8. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/ECOv002_calval_tables.egg-info/SOURCES.txt +5 -0
  9. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/ECOv002_calval_tables.egg-info/requires.txt +6 -0
  10. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/PKG-INFO +7 -1
  11. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/pyproject.toml +8 -2
  12. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/tests/test_import_dependencies.py +6 -1
  13. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/ECOv002_calval_tables/__init__.py +0 -0
  14. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/ECOv002_calval_tables/combined_eco_flux_EC_filtered.csv +0 -0
  15. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/ECOv002_calval_tables/metadata_ebc_filt.csv +0 -0
  16. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/ECOv002_calval_tables/version.py +0 -0
  17. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/ECOv002_calval_tables.egg-info/dependency_links.txt +0 -0
  18. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/ECOv002_calval_tables.egg-info/top_level.txt +0 -0
  19. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/LICENSE +0 -0
  20. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/README.md +0 -0
  21. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/setup.cfg +0 -0
  22. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/tests/test_import_ECOv002_calval_tables.py +0 -0
  23. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/tests/test_load_calval_table.py +0 -0
  24. {ecov002_calval_tables-1.3.0 → ecov002_calval_tables-1.5.0}/tests/test_load_metadata_ebc_filt.py +0 -0
@@ -0,0 +1,5 @@
1
+ from .load_tables import *
2
+ from .error_funcs import *
3
+ from .plot_funcs import *
4
+ from .ec_lib import *
5
+ from .plot_single_model import *