Metadata-Version: 2.1
Name: AreaOfShapesLib
Version: 3.5
Summary: A Python library for performing arithmetic operations related to the area of different shapes
Home-page: https://github.com/mjfctor/ArithmeticOperations
Author: mjfctor
Author-email: emjayfactor@gmail.com
License: MIT
Classifier: Development Status :: 3 - Alpha
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
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Area of Shapes Package

This is a simple Python library for performing arithmetic operations related to the area of different shapes.

## Installation
Visit: https://pypi.org/project/AreaOfShapesLib

or
To install this library, you can use pip:

```bash
pip install AreaOfShapesLib
```

## Usage
Import the Library Using:
```python
from areaofShapesLib import *
```
## Demo
Here are some examples of how to use the library:
```python
# Calculate the area of a triangle
area = area_of_triangle(10, 5)
print(area)  # Output: 25

# Calculate the area of a circle
area = area_of_circle(5)
print(area)  # Output: 78.53981633974483

# Calculate the area of a rectangle
area = area_of_rectangle(10, 5)
print(area)  # Output: 50
```

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

## License
[MIT](https://choosealicense.com/licenses/mit/)
