Metadata-Version: 2.4
Name: myfirstpro
Version: 0.1.0
Summary: A tiny package with basic math operations.
Author-email: Your Name <you@example.com>
License: MIT
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
License-File: LICENSE
Dynamic: license-file

# myfirstpro

`myfirstpro` is a minimal Python package that provides four basic math functions:

- `add(a, b)`
- `subtract(a, b)`
- `multiply(a, b)`
- `divide(a, b)` (raises `ZeroDivisionError` on division by zero)

Install: (not published on PyPI — use local install)
```bash
pip install ./myfirstpro
```

Example:
```python
from myfirstpro import add, divide
print(add(2,3))        # 5
print(divide(10,2))    # 5.0
```
