Metadata-Version: 2.4
Name: abdullah_math
Version: 0.1.0
Summary: A simple math operations package
Home-page: https://github.com/yourusername/abdullah_math
Author: Abdullah
Author-email: Abdullah <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/abdullah_math
Project-URL: Bug Reports, https://github.com/yourusername/abdullah_math/issues
Project-URL: Source, https://github.com/yourusername/abdullah_math
Keywords: math,arithmetic,calculator
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Abdullah Math

A simple Python package for basic mathematical operations.

## Features

- Addition
- Subtraction
- Multiplication
- Division (with zero division protection)

## Installation

```bash
pip install abdullah_math
```

## Usage

```python
from abdullah_math import add, subtract, multiply, divide

# Addition
result = add(5, 3)
print(result)  # Output: 8

# Subtraction
result = subtract(10, 4)
print(result)  # Output: 6

# Multiplication
result = multiply(3, 7)
print(result)  # Output: 21

# Division
result = divide(15, 3)
print(result)  # Output: 5.0

# Division by zero raises ValueError
try:
    result = divide(10, 0)
except ValueError as e:
    print(e)  # Output: Cannot divide by zero
```

## Development

### Running Tests

```bash
python -m pytest tests/
```

### Installing in Development Mode

```bash
pip install -e .
```

## License

This project is licensed under the MIT License - see the LICENSE file for details.

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.
