river-route 1.0.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.
@@ -0,0 +1,32 @@
1
+ The Clear BSD License
2
+
3
+ Copyright (c) 2024 Riley Chad Hales
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted (subject to the limitations in the disclaimer
8
+ below) provided that the following conditions are met:
9
+
10
+ * Redistributions of source code must retain the above copyright notice,
11
+ this list of conditions and the following disclaimer.
12
+
13
+ * Redistributions in binary form must reproduce the above copyright
14
+ notice, this list of conditions and the following disclaimer in the
15
+ documentation and/or other materials provided with the distribution.
16
+
17
+ * Neither the name of the copyright holder nor the names of its
18
+ contributors may be used to endorse or promote products derived from this
19
+ software without specific prior written permission.
20
+
21
+ NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY
22
+ THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
23
+ CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
25
+ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
26
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
27
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
29
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
30
+ IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32
+ POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,5 @@
1
+ include LICENSE.txt
2
+ include requirements.txt
3
+ recursive-exclude docs *
4
+ exclude .gitignore
5
+ exclude .readthedocs.yml
@@ -0,0 +1,32 @@
1
+ Metadata-Version: 2.1
2
+ Name: river_route
3
+ Version: 1.0.0
4
+ Summary: Perform river routing computations on large river networks
5
+ Home-page: https://github.com/rileyhales/river-route
6
+ Author: Riley Hales PhD
7
+ Classifier: Development Status :: 4 - Beta
8
+ Classifier: Intended Audience :: Science/Research
9
+ Classifier: Programming Language :: Python
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Topic :: Scientific/Engineering
13
+ Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
14
+ Classifier: Topic :: Scientific/Engineering :: GIS
15
+ Classifier: Topic :: Scientific/Engineering :: Hydrology
16
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
17
+ Requires-Python: >=3.12.0
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE.txt
20
+ Requires-Dist: dask
21
+ Requires-Dist: fastparquet
22
+ Requires-Dist: matplotlib
23
+ Requires-Dist: natsort
24
+ Requires-Dist: netcdf4
25
+ Requires-Dist: networkx
26
+ Requires-Dist: numpy
27
+ Requires-Dist: pandas
28
+ Requires-Dist: pyyaml
29
+ Requires-Dist: scipy
30
+ Requires-Dist: tqdm
31
+ Requires-Dist: xarray
32
+ Requires-Dist: zarr
@@ -0,0 +1,6 @@
1
+ # River Route
2
+
3
+ `river-route` is a Python package for routing runoff through a river network. Routing calculations are vectorized with
4
+ numpy and scipy which keeps the array computation times on par with faster compiled languages.
5
+
6
+ Please visit https://river-route.hales.app for documentation
@@ -0,0 +1,13 @@
1
+ dask
2
+ fastparquet
3
+ matplotlib
4
+ natsort
5
+ netcdf4
6
+ networkx
7
+ numpy
8
+ pandas
9
+ pyyaml
10
+ scipy
11
+ tqdm
12
+ xarray
13
+ zarr