Metadata-Version: 2.1
Name: growexx-multiply
Version: 0.1.0
Summary: Growexx Demo library
Home-page: https://growexx-multiply.readthedocs.io/
Author: Growexx
Author-email: example@email.com
License: MIT
Platform: UNKNOWN
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: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Growexx multiply
A small demo library for a Growexx publication about publishing libraries.

### Installation
```
pip install growexx-multiply
```

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

```Python
from growexx_multiply import Multiplication

# Instantiate a Multiplication object
multiplication = Multiplication(2)

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

