Metadata-Version: 2.2
Name: optimation
Version: 1.0
Summary: A Python library for iterative variable weighting and optimation
Home-page: https://github.com/yourusername/optimation
Author: Sourceduty
Author-email: Sourceduty <sourceduty@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# Optimation Framework

Optimation is a flexible framework for iterative variable weighting, balancing trade-offs, and adaptive decision-making.

## Installation

```
pip install optimation
```

## Usage
```python
from optimation.core import optimate

result = optimate(A=10, B=20, weight_A=70)
print(result)  # Outputs optimized result
```

## Features
- **Variable Weighting**
- **Iterative Trade-Offs**
- **Half-Adding & Exponential Adjustments**
