Metadata-Version: 2.4
Name: rwskit
Version: 0.23.0
Summary: Utility methods I've found useful.
Author-email: Reid Swanson <reid@reidswanson.com>
License: 3-Clause BSD License
        ====================
        
        _Copyright © `Reid Swanson`  
        _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 `RWS` 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 `COPYRIGHT OWNER OR CONTRIBUTERS` 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.
        
Project-URL: Homepage, https://bitbucket.org/reidswanson/rwskit
Project-URL: Documentation, https://rwskit.readthedocs.io/en/latest
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: black
Requires-Dist: humanize
Requires-Dist: icontract
Requires-Dist: msgspec
Requires-Dist: numpy
Requires-Dist: pydantic
Requires-Dist: pympler
Requires-Dist: pyyaml
Requires-Dist: pyyaml-include
Requires-Dist: ruff
Requires-Dist: xxhash
Requires-Dist: yamlable
Provides-Extra: bayes
Requires-Dist: arviz; extra == "bayes"
Requires-Dist: seaborn; extra == "bayes"
Requires-Dist: aesara; extra == "bayes"
Requires-Dist: pymc; extra == "bayes"
Provides-Extra: numpy
Requires-Dist: numpy; extra == "numpy"
Requires-Dist: numpy-indexed; extra == "numpy"
Requires-Dist: xarray; extra == "numpy"
Provides-Extra: pandas
Requires-Dist: pandas; extra == "pandas"
Provides-Extra: sqlalchemy
Requires-Dist: sqlalchemy; extra == "sqlalchemy"
Provides-Extra: benchmarking
Requires-Dist: numpy; extra == "benchmarking"
Requires-Dist: pandas; extra == "benchmarking"
Requires-Dist: plotnine[all]; extra == "benchmarking"
Requires-Dist: tqdm; extra == "benchmarking"
Provides-Extra: notebooks
Requires-Dist: memory-profiler; extra == "notebooks"
Requires-Dist: numpy; extra == "notebooks"
Requires-Dist: numpy-indexed; extra == "notebooks"
Requires-Dist: numpy-groupies; extra == "notebooks"
Requires-Dist: pandas; extra == "notebooks"
Requires-Dist: perfplot; extra == "notebooks"
Requires-Dist: pysort; extra == "notebooks"
Provides-Extra: bump2version
Requires-Dist: bump-my-version; extra == "bump2version"
Provides-Extra: documentation
Requires-Dist: livereload; extra == "documentation"
Requires-Dist: six; extra == "documentation"
Requires-Dist: sphinx; extra == "documentation"
Requires-Dist: sphinx-autoapi; extra == "documentation"
Requires-Dist: sphinx_rtd_theme; extra == "documentation"
Provides-Extra: testing
Requires-Dist: aiosqlite; extra == "testing"
Requires-Dist: asyncpg; extra == "testing"
Requires-Dist: hypothesis; extra == "testing"
Requires-Dist: numpy; extra == "testing"
Requires-Dist: psycopg[binary,pool]; extra == "testing"
Requires-Dist: pytest; extra == "testing"
Requires-Dist: pytest-asyncio; extra == "testing"
Requires-Dist: pytest-cov; extra == "testing"
Requires-Dist: pytest_postgresql; extra == "testing"
Provides-Extra: all
Requires-Dist: rwskit[bayes,benchmarking,bump2version,cli,documentation,notebooks,numpy,pandas,sqlalchemy,testing]; extra == "all"
Dynamic: license-file

# RWSkit

This is a collection of utilities that I have found myself recreating over and over again in different projects.

The following `extras` are defined to help minimize dependencies.

config
: Dataclass extensions intended to be useful for configuration objects.
  These extensions primarily involve loading and saving dataclasses using YAML.

numpy
: Utilities for working with [numpy](https://numpy.org/).

pandas
: Utilities for working with [pandas](https://pandas.pydata.org/).

sqlalchemy
: Utilities for working with [sqlalchemy](https://www.sqlalchemy.org/).

benchmarking
: A benchmarking utility.

notebooks
: A small collection notebooks that I primarily use to take notes.


