Metadata-Version: 2.4
Name: arrheniuscalculator
Version: 0.1.1
Summary: A simple GUI tool for calculating Arrhenius integral.
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyside6
Dynamic: license-file

# ArrheniusCalculator

The intention of this project is to develop a simple QML GUI application that will calculate the Arrhenius integral for various cases (tabular data, functional data, etc.).

The project is currently in the process of being published on pypi package index, so except installation instructions to not work correctly.

## Option 1: Install from PyPi

### Option a: Using uv

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

### Option b: Using pip

```bash
pip install arrheniuscalculator
arrheniuscalculator
```

## Option 2: Installation from source

### Option a: Using uv

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

### Option 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
```

