Metadata-Version: 2.2
Name: kr326lib
Version: 1.0.0
Summary: Numerical Library By Kai Ruth (ETH Zurich, Imperial)
Keywords: numerical,process-engineering,C++,chemistry
Author-Email: Kai Ruth <contact@kairuth.ch>
License: MIT License
         
         Copyright (c) 2026 Kai Ruth
         
         Permission is hereby granted, free of charge, to any person obtaining a copy
         of this software and associated documentation files (the "Software"), to deal
         in the Software without restriction, including without limitation the rights
         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         SOFTWARE.
         
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Project-URL: Homepage, https://github.com/Kai360-dot/kr326lib
Requires-Python: >=3.11
Provides-Extra: dev
Requires-Dist: black; extra == "dev"
Requires-Dist: bumpver; extra == "dev"
Requires-Dist: isort; extra == "dev"
Requires-Dist: pip-tools; extra == "dev"
Requires-Dist: pybind11-stubgen; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Description-Content-Type: text/markdown

# kr326lib

Numerical library by Kai Ruth (ETH Zurich, Imperial) — a C++ core with Python
bindings via [pybind11](https://pybind11.readthedocs.io/).

## Install

```bash
pip install kr326lib
```

## Usage

```python
import kr326lib

# Ideal gas law (SI units; temperature in kelvin).
P = kr326lib.get_P_ideal_gas(n=1.0, T=300.0, V=0.0224)   # pressure [Pa]
V = kr326lib.get_V_ideal_gas(n=1.0, T=300.0, P=101325)   # volume   [m^3]
```

Building from source or contributing? See [CONTRIBUTING.md](CONTRIBUTING.md).
