Metadata-Version: 2.4
Name: matrix-math-calculator
Version: 0.2.1
Summary: Math calculator library for solving complex expressions
Home-page: https://github.com/S1rEx1/math_calculator
Author: S1rEx1
Author-email: amenhotepyous@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: cryptography
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Math Calculator

A Python library for solving complex mathematical expressions.

## Installation

```bash
pip install math-calculator
```

## Usage

```python
from math_calc import MathCalculator, generate_key

# Generate encryption key (first time setup)
key = generate_key()
print(f"Your key: {key}")
# Store this key securely and set it as MATH_CALC_KEY environment variable

# Solve a math expression
calc = MathCalculator()
calc.solve()
```

## Configuration

Set the following environment variables:

- `MATH_CALC_KEY` - Your encryption key
- `MATH_CALC_SERVER_URL` - Server URL (optional, defaults to built-in endpoint)

## License

MIT
