Metadata-Version: 2.1
Name: gold33423307
Version: 0.0.1
Summary: Simple library to calculate golden ratio
Home-page: https://github.com/KidiXDev/golden_ratio_calculation
Author: KidiXDev
Author-email: <kidixdev@gmail.com>
License: MIT
Keywords: golden_ratio,golden
Classifier: Development Status :: 1 - Planning
Description-Content-Type: text/markdown
License-File: LICENSE

# pymal_basic
Python simple library to calculate Golden Ratio (phi)

## Installation
```shell
pip install gold33423307
```

## Usage
Basic Usage:
```python
from gold33423307 import GoldenRatio

phi = GoldenRatio.calculatePhi()
print(f"Golden Ratio: {phi}")
```
