pastastore 1.7.2__tar.gz → 1.9.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.
- {pastastore-1.7.2 → pastastore-1.9.0}/LICENSE +1 -1
- {pastastore-1.7.2 → pastastore-1.9.0}/PKG-INFO +17 -25
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore/base.py +96 -638
- pastastore-1.9.0/pastastore/connectors.py +1457 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore/extensions/hpd.py +4 -4
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore/plotting.py +8 -9
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore/store.py +296 -116
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore/styling.py +4 -4
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore/util.py +15 -11
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore/version.py +1 -1
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore/yaml_interface.py +35 -8
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore.egg-info/PKG-INFO +17 -25
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore.egg-info/requires.txt +4 -12
- {pastastore-1.7.2 → pastastore-1.9.0}/pyproject.toml +6 -18
- {pastastore-1.7.2 → pastastore-1.9.0}/readme.md +2 -2
- {pastastore-1.7.2 → pastastore-1.9.0}/tests/conftest.py +1 -5
- {pastastore-1.7.2 → pastastore-1.9.0}/tests/test_003_pastastore.py +28 -10
- {pastastore-1.7.2 → pastastore-1.9.0}/tests/test_006_benchmark.py +0 -3
- {pastastore-1.7.2 → pastastore-1.9.0}/tests/test_007_hpdextension.py +10 -8
- pastastore-1.7.2/pastastore/connectors.py +0 -558
- {pastastore-1.7.2 → pastastore-1.9.0}/docs/conf.py +0 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore/__init__.py +0 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore/datasets.py +0 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore/extensions/__init__.py +0 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore/extensions/accessor.py +0 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore.egg-info/SOURCES.txt +0 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore.egg-info/dependency_links.txt +0 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/pastastore.egg-info/top_level.txt +0 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/setup.cfg +0 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/tests/test_001_import.py +0 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/tests/test_002_connectors.py +0 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/tests/test_004_yaml.py +0 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/tests/test_005_maps_plots.py +0 -0
- {pastastore-1.7.2 → pastastore-1.9.0}/tests/test_008_stressmodels.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: pastastore
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.9.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>
|
|
7
7
|
License: The MIT License (MIT)
|
|
8
8
|
|
|
9
|
-
Copyright (c) 2020 D.A. Brakenhoff
|
|
9
|
+
Copyright (c) 2020-2025 D.A. Brakenhoff
|
|
10
10
|
|
|
11
11
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
12
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -40,13 +40,13 @@ 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.9
|
|
44
43
|
Classifier: Programming Language :: Python :: 3.10
|
|
45
44
|
Classifier: Programming Language :: Python :: 3.11
|
|
46
45
|
Classifier: Programming Language :: Python :: 3.12
|
|
46
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
47
47
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
48
48
|
Classifier: Topic :: Scientific/Engineering :: Hydrology
|
|
49
|
-
Requires-Python: >=3.
|
|
49
|
+
Requires-Python: >=3.10
|
|
50
50
|
Description-Content-Type: text/markdown
|
|
51
51
|
License-File: LICENSE
|
|
52
52
|
Requires-Dist: pastas>=0.13
|
|
@@ -54,6 +54,7 @@ Requires-Dist: tqdm>=4.36
|
|
|
54
54
|
Requires-Dist: pyyaml
|
|
55
55
|
Provides-Extra: full
|
|
56
56
|
Requires-Dist: pastastore[arcticdb,optional]; extra == "full"
|
|
57
|
+
Requires-Dist: hydropandas; extra == "full"
|
|
57
58
|
Provides-Extra: extensions
|
|
58
59
|
Requires-Dist: hydropandas; extra == "extensions"
|
|
59
60
|
Provides-Extra: optional
|
|
@@ -64,26 +65,17 @@ Provides-Extra: arcticdb
|
|
|
64
65
|
Requires-Dist: arcticdb; extra == "arcticdb"
|
|
65
66
|
Provides-Extra: lint
|
|
66
67
|
Requires-Dist: ruff; extra == "lint"
|
|
68
|
+
Provides-Extra: pytest
|
|
69
|
+
Requires-Dist: coverage; extra == "pytest"
|
|
70
|
+
Requires-Dist: codecov; extra == "pytest"
|
|
71
|
+
Requires-Dist: pytest; extra == "pytest"
|
|
72
|
+
Requires-Dist: pytest-cov; extra == "pytest"
|
|
73
|
+
Requires-Dist: pytest-dependency; extra == "pytest"
|
|
74
|
+
Requires-Dist: pytest-benchmark; extra == "pytest"
|
|
75
|
+
Requires-Dist: codacy-coverage; extra == "pytest"
|
|
67
76
|
Provides-Extra: test
|
|
68
|
-
Requires-Dist: pastastore[arcticdb,lint,optional]; extra == "test"
|
|
77
|
+
Requires-Dist: pastastore[arcticdb,lint,optional,pytest]; extra == "test"
|
|
69
78
|
Requires-Dist: hydropandas[full]; extra == "test"
|
|
70
|
-
Requires-Dist: coverage; extra == "test"
|
|
71
|
-
Requires-Dist: codecov; extra == "test"
|
|
72
|
-
Requires-Dist: pytest; extra == "test"
|
|
73
|
-
Requires-Dist: pytest-cov; extra == "test"
|
|
74
|
-
Requires-Dist: pytest-dependency; extra == "test"
|
|
75
|
-
Requires-Dist: pytest-benchmark; extra == "test"
|
|
76
|
-
Requires-Dist: codacy-coverage; extra == "test"
|
|
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"
|
|
87
79
|
Provides-Extra: docs
|
|
88
80
|
Requires-Dist: pastastore[optional]; extra == "docs"
|
|
89
81
|
Requires-Dist: sphinx_rtd_theme; extra == "docs"
|
|
@@ -101,7 +93,7 @@ Requires-Dist: nbsphinx_link; extra == "docs"
|
|
|
101
93
|
# pastastore
|
|
102
94
|
|
|
103
95
|
This module stores
|
|
104
|
-
[Pastas](https://pastas.readthedocs.io/
|
|
96
|
+
[Pastas](https://pastas.readthedocs.io/latest/) time series and models in a
|
|
105
97
|
database.
|
|
106
98
|
|
|
107
99
|
Storing time series and models in a database allows the user to manage time
|
|
@@ -186,4 +178,4 @@ pstore.to_zip("my_backup.zip")
|
|
|
186
178
|
```
|
|
187
179
|
|
|
188
180
|
For more elaborate examples, refer to the
|
|
189
|
-
[Notebooks](https://pastastore.readthedocs.io/
|
|
181
|
+
[Notebooks](https://pastastore.readthedocs.io/latest/examples.html#example-notebooks).
|