Metadata-Version: 2.1
Name: pyareas
Version: 0.0.9
Summary: Python package for areas of 2D shapes
Author-email: TomTheCodingGuy <tomb80940@gmail.com>
Project-URL: Homepage, https://github.com/TomTheCodingGuy/pyareas
Project-URL: Bug Tracker, https://github.com/TomTheCodingGuy/pyareas/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

pyareas
=======
A simple Python library for finding the areas of 2D shapes
----------------------------------------------------------
Shapes Included:
----------------
- Square
- Triangle
- Rectangle
- Circle
- Parellelogram
- Ellipse
- Rhombus
- Trapezoid
- Polygon(regular)
- Kite
- Pentagram

Install command:
----------------
```
pip install pyareas
```

Example:
--------
```
from pyareas import *

print(Square(10))
```
Gives the output:
```
100
```

To do:
------
- Add more shapes
- Create a new library for volume of 3D shapes
	- pyvolumes?
	- pyareas3d?
