Metadata-Version: 2.1
Name: demo-multiply
Version: 0.3.0
Summary: Demo library
Home-page: 
Author: Saeed Anabtawi
Author-email: example@email.com
License: MIT
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Demo multiply
A small demo library.

### Installation
```
pip install demo-multiply
```

### Get started
How to multiply one number by another with this lib:

```Python
from demo_multiply import Multiplication

# Instantiate a Multiplication object
multiplication = Multiplication(2)

# Call the multiply method
result = multiplication.multiply(5)
```
