Metadata-Version: 2.1
Name: newgeometry14
Version: 0.0.1
Summary: MyGeometry is a simple Python library for calculating the area and perimeter of basic geometric shapes
Home-page: https://github.com/syahrulcaem/geometry_baru
Author: hanifaslam
Author-email: <aslamhanif141@gmail.com>
License: MIT
Keywords: mal,myanimelist
Classifier: Development Status :: 1 - Planning
Description-Content-Type: text/markdown
License-File: LICENSE

# MyGeometry

MyGeometry is a simple Python library for calculating the area and perimeter of basic geometric shapes.

## Installation

```bash
pip install mygeometry
```

## Usage
import mygeometry

# Example usage for a square
side_length = 5
area = mygeometry.luas_persegi(side_length)
perimeter = mygeometry.keliling_persegi(side_length)

print(f"Area of the square with side length {side_length}: {area}")
print(f"Perimeter of the square with side length {side_length}: {perimeter}")
