Metadata-Version: 2.4
Name: arrheniuscalculator
Version: 0.1.7.1
Summary: A simple GUI tool for calculating Arrhenius integral.
Author-email: Tilen <tilen.zel@gmail.com>
Maintainer-email: Tilen <tilen.zel@gmail.com>
License: MIT License
        
        Copyright (c) 2026 Tilen
        
        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.
Project-URL: Homepage, https://github.com/TZ387/ArrheniusCalculator
Project-URL: Repository, https://github.com/TZ387/ArrheniusCalculator
Project-URL: Bug Tracker, https://github.com/TZ387/ArrheniusCalculator/issues
Project-URL: Documentation, https://github.com/TZ387/ArrheniusCalculator#readme
Keywords: arrhenius,calculator,thermal,qml,gui
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Environment :: X11 Applications :: Qt
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyside6>=6.5
Dynamic: license-file

# ArrheniusCalculator

[![Tests](https://github.com/TZ387/ArrheniusCalculator/actions/workflows/tests.yml/badge.svg)](https://github.com/TZ387/ArrheniusCalculator/actions/workflows/tests.yml)

A simple QML-based application for calculating the Arrhenius integral across different scenarios, including discrete data and analytical functions.

Using the application is straightforward: click the Launch button and choose the type of calculation you want. Then enter the required parameters and press Calculate. You can hover over the question mark icons for additional information where needed.

<p align="center">
  <img src="https://github.com/TZ387/ArrheniusCalculator/raw/main/Demonstration.png" alt="ArrheniusCalculator Screenshot" />
</p>

## Installation

### Option 1: Install from PyPi

#### Option a: Using uv

```bash
uvx arrheniuscalculator
```

or inside a project:

```bash
uv add arrheniuscalculator
uv run arrheniuscalculator
```

#### Option b: Using pip

```bash
pip install arrheniuscalculator
arrheniuscalculator
```

Or if Python is not included to path:

```bash
arrheniuscalculator.main
```

### Option 2: Installation from source

#### a: Using uv

```bash
git clone https://github.com/TZ387/ArrheniusCalculator.git
cd ArrheniusCalculator
uv sync
uv run arrheniuscalculator
```

#### b: Using pip

```bash
git clone https://github.com/TZ387/ArrheniusCalculator.git
cd ArrheniusCalculator

python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

pip install -e .
python -m arrheniuscalculator.main
```

## Testing

Unit tests cover the calculation logic in `arrheniuscalculator/qml/ArrheniusCalc.js` (parsing, the Arrhenius/VHS math, and input validation). They run under plain Node.js (v18+, no npm dependencies needed):

```bash
node --test "tests/js/*.test.js"
```

## License

This project is licensed under the MIT License - see the LICENSE file for details.
