Metadata-Version: 2.1
Name: mytest-multiply
Version: 0.1.2
Summary: Demo library
Home-page: https://mytest-multiply.readthedocs.io/
Author: Joel Fragoso
Author-email: example@email.com
License: MIT
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
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: Operating System :: OS Independent
Description-Content-Type: text/markdown

# MyTest multiply

A small demo library about publishing libraries.

### Installation
```bash
pip install mytest-multiply
```

### Get started

How to multiply one number by another with this lib:
```python
from mytest_multiply import Multiplication

# Instantiate a Multiplication objec
multiplication = Multiplication(2)

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