pastastore 1.4.0__tar.gz → 1.6.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 (29) hide show
  1. {pastastore-1.4.0 → pastastore-1.6.0}/PKG-INFO +18 -17
  2. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore/__init__.py +2 -4
  3. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore/base.py +206 -59
  4. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore/connectors.py +23 -420
  5. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore/datasets.py +5 -10
  6. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore/plotting.py +27 -14
  7. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore/store.py +522 -73
  8. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore/styling.py +2 -1
  9. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore/util.py +22 -108
  10. pastastore-1.6.0/pastastore/version.py +39 -0
  11. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore/yaml_interface.py +33 -25
  12. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore.egg-info/PKG-INFO +18 -17
  13. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore.egg-info/SOURCES.txt +3 -1
  14. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore.egg-info/requires.txt +15 -13
  15. {pastastore-1.4.0 → pastastore-1.6.0}/pyproject.toml +59 -16
  16. {pastastore-1.4.0 → pastastore-1.6.0}/tests/test_001_import.py +1 -0
  17. {pastastore-1.4.0 → pastastore-1.6.0}/tests/test_002_connectors.py +26 -32
  18. {pastastore-1.4.0 → pastastore-1.6.0}/tests/test_003_pastastore.py +34 -29
  19. {pastastore-1.4.0 → pastastore-1.6.0}/tests/test_004_yaml.py +11 -10
  20. {pastastore-1.4.0 → pastastore-1.6.0}/tests/test_005_maps_plots.py +6 -5
  21. {pastastore-1.4.0 → pastastore-1.6.0}/tests/test_006_benchmark.py +3 -87
  22. pastastore-1.6.0/tests/test_007_hpdextension.py +66 -0
  23. pastastore-1.6.0/tests/test_008_stressmodels.py +128 -0
  24. pastastore-1.4.0/pastastore/version.py +0 -7
  25. {pastastore-1.4.0 → pastastore-1.6.0}/LICENSE +0 -0
  26. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore.egg-info/dependency_links.txt +0 -0
  27. {pastastore-1.4.0 → pastastore-1.6.0}/pastastore.egg-info/top_level.txt +0 -0
  28. {pastastore-1.4.0 → pastastore-1.6.0}/readme.md +0 -0
  29. {pastastore-1.4.0 → pastastore-1.6.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pastastore
3
- Version: 1.4.0
3
+ Version: 1.6.0
4
4
  Summary: Tools for managing Pastas time series models.
5
5
  Author: D.A. Brakenhoff
6
6
  Maintainer-email: "D.A. Brakenhoff" <d.brakenhoff@artesia-water.nl>, "R. Calje" <r.calje@artesia-water.nl>, "M.A. Vonk" <m.vonk@artesia-water.nl>
@@ -40,11 +40,10 @@ Classifier: Operating System :: Unix
40
40
  Classifier: Operating System :: MacOS
41
41
  Classifier: Programming Language :: Python
42
42
  Classifier: Programming Language :: Python :: 3
43
- Classifier: Programming Language :: Python :: 3.7
44
- Classifier: Programming Language :: Python :: 3.8
45
43
  Classifier: Programming Language :: Python :: 3.9
46
44
  Classifier: Programming Language :: Python :: 3.10
47
45
  Classifier: Programming Language :: Python :: 3.11
46
+ Classifier: Programming Language :: Python :: 3.12
48
47
  Classifier: Programming Language :: Python :: 3 :: Only
49
48
  Classifier: Topic :: Scientific/Engineering :: Hydrology
50
49
  Requires-Python: >=3.7
@@ -55,14 +54,16 @@ Requires-Dist: tqdm>=4.36
55
54
  Requires-Dist: pyyaml
56
55
  Provides-Extra: full
57
56
  Requires-Dist: pastastore[arcticdb,optional]; extra == "full"
58
- Provides-Extra: lint
59
- Requires-Dist: black; extra == "lint"
60
- Requires-Dist: flake8; extra == "lint"
61
- Requires-Dist: isort; extra == "lint"
57
+ Provides-Extra: extensions
58
+ Requires-Dist: hydropandas; extra == "extensions"
62
59
  Provides-Extra: optional
63
60
  Requires-Dist: contextily; extra == "optional"
64
61
  Requires-Dist: pyproj; extra == "optional"
65
62
  Requires-Dist: adjustText; extra == "optional"
63
+ Provides-Extra: arcticdb
64
+ Requires-Dist: arcticdb; extra == "arcticdb"
65
+ Provides-Extra: lint
66
+ Requires-Dist: ruff; extra == "lint"
66
67
  Provides-Extra: test
67
68
  Requires-Dist: pastastore[arcticdb,lint,optional]; extra == "test"
68
69
  Requires-Dist: hydropandas[full]; extra == "test"
@@ -73,16 +74,16 @@ Requires-Dist: pytest-cov; extra == "test"
73
74
  Requires-Dist: pytest-dependency; extra == "test"
74
75
  Requires-Dist: pytest-benchmark; extra == "test"
75
76
  Requires-Dist: codacy-coverage; extra == "test"
76
- Requires-Dist: lxml; extra == "test"
77
- Provides-Extra: pystore
78
- Requires-Dist: fsspec>=0.3.3; extra == "pystore"
79
- Requires-Dist: python-snappy; extra == "pystore"
80
- Requires-Dist: dask[dataframe]; extra == "pystore"
81
- Provides-Extra: arctic
82
- Requires-Dist: arctic; extra == "arctic"
83
- Provides-Extra: arcticdb
84
- Requires-Dist: arcticdb; extra == "arcticdb"
85
- Requires-Dist: protobuf~=4.0; extra == "arcticdb"
77
+ Provides-Extra: test-py312
78
+ Requires-Dist: pastastore[lint,optional]; extra == "test-py312"
79
+ Requires-Dist: hydropandas[full]; extra == "test-py312"
80
+ Requires-Dist: coverage; extra == "test-py312"
81
+ Requires-Dist: codecov; extra == "test-py312"
82
+ Requires-Dist: pytest; extra == "test-py312"
83
+ Requires-Dist: pytest-cov; extra == "test-py312"
84
+ Requires-Dist: pytest-dependency; extra == "test-py312"
85
+ Requires-Dist: pytest-benchmark; extra == "test-py312"
86
+ Requires-Dist: codacy-coverage; extra == "test-py312"
86
87
  Provides-Extra: docs
87
88
  Requires-Dist: pastastore[optional]; extra == "docs"
88
89
  Requires-Dist: sphinx_rtd_theme; extra == "docs"
@@ -1,11 +1,9 @@
1
- # ruff: noqa: F401
1
+ # ruff: noqa: F401 D104
2
2
  from pastastore import connectors, styling, util
3
3
  from pastastore.connectors import (
4
- ArcticConnector,
5
4
  ArcticDBConnector,
6
5
  DictConnector,
7
6
  PasConnector,
8
- PystoreConnector,
9
7
  )
10
8
  from pastastore.store import PastaStore
11
- from pastastore.version import __version__
9
+ from pastastore.version import __version__, show_versions