Metadata-Version: 2.3
Name: alhambra-mixes
Version: 0.6.2a1
Summary: Deprecated: This package has been renamed to 'riverine'
Author: Constantine Evans
Author-email: Constantine Evans <mixes@mb.costi.net>
License: BSD 3-Clause License
         
         Copyright (c) 2024, Constantine Evans and other contributors.
         
         All rights reserved.
         
         Redistribution and use in source and binary forms, with or without
         modification, are permitted provided that the following conditions are met:
         
         1. Redistributions of source code must retain the above copyright notice, this
            list of conditions and the following disclaimer.
         
         2. Redistributions in binary form must reproduce the above copyright notice,
            this list of conditions and the following disclaimer in the documentation
            and/or other materials provided with the distribution.
         
         3. Neither the name of the copyright holder nor the names of its
            contributors may be used to endorse or promote products derived from
            this software without specific prior written permission.
         
         THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
         AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
         IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
         DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
         FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
         DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
         SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
         CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
         OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
         OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Classifier: Development Status :: 7 - Inactive
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: Typing :: Typed
Requires-Dist: riverine>=0.6.0
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# alhambra-mixes → riverine

**⚠️ This package has been renamed to [`riverine`](https://github.com/cgevans/riverine)**

## Migration Guide

This is a stub package that depends on and re-exports the `riverine` package.

### What you need to do:

1. **Update your dependencies:**
   ```bash
   # Using pip
   pip uninstall alhambra-mixes
   pip install riverine
   
   # Using uv
   uv remove alhambra-mixes
   uv add riverine
   ```

2. **Update your imports:**
   ```python
   # Old
   import alhambra
   
   # New
   import riverine
   ```

### Why the rename?

The package has been renamed from `alhambra-mixes` to `riverine` to better reflect its purpose and for better discoverability.

### Compatibility

This stub package will show a deprecation warning when imported but will continue to work by re-exporting everything from `riverine`. However, it may be removed in the future, so please migrate your code.

For more information, visit the [riverine repository](https://github.com/cgevans/riverine).

