Metadata-Version: 2.4
Name: pycalgo
Version: 0.2.0
Summary: A Python calculator library using Go-based DLL implementation
Author: Pranesh
Author-email: praneshmadhan646@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# PyCalGo

A Python calculator library using Go-based DLL implementation.

## Features

- Basic arithmetic operations (+, -, *, /)
- Uses a Go-compiled DLL for fast calculations
- Simple Python interface

## Installation

```bash
pip install pycalgo
```

## Usage

```python
from pycalgo import calculate

# Basic arithmetic
result = calculate(10, 5, '+')  # Addition
print(result)  # Output: 15
```

## Requirements

- Windows OS
- Python 3.6 or higher

## License

MIT License
