Metadata-Version: 2.1
Name: geometry-543
Version: 0.1.0
Summary: Demo library
Home-page: https://medium-multiply.readthedocs.io/
Author: Andre Larsson
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.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: numpy

# Ellipse
A small demo library for calculating the area of an ellipse

### Installation
```
pip install geometry-543
```

### Get started
How to create an ellipse and calculate the area

```Python
from geometry_543 import Ellipse

# Instantiate an Ellipse object
e = Ellipse(10,13)

# Call the method for calculating the area
result = e.calc_area()
```

