Metadata-Version: 2.1
Name: basicmathematicsw
Version: 0.1.0
Summary: A simple package with basic math functions
Home-page: https://github.com/yourusername/basicmathematicsw
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown


# basicmathematicsw

## Project Description
A small demo library for basic mathematical operations like addition, subtraction, and multiplication.

## Installation
To install the package, use pip:
pip install basicmathematicsw


## Get Started
How to use the basicmathematicsw library:

### Import the Functions
To use the functions in this library, import them as follows:
```python
from basicmathematicsw.operations import add, subtract, multiply

Available Functions:
add(a, b): Returns the sum of a and b.
subtract(a, b): Returns the difference between a and b.
multiply(a, b): Returns the product of a and b.
