Metadata-Version: 2.1
Name: polyprops
Version: 1.0.1
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
License-File: LICENSE.txt
Summary: A Python package used for the analysis of polygon properties with a focus on performance.
Author: Kyle Lessa
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: homepage, https://github.com/k-lessa/polyprops

# polyprops

polyprops is a Python package written in Rust used for the analysis of polygon properties with a focus on performance.

## Features

- Fast and efficient calculation of polygon properties using algorithms written in Rust

## Installation

Install polyprops with pip:

```bash
  pip install polyprops
```

## Usage/Examples

```python
import polyprops as pp

# Create a polygon
polygon = pp.Polygon([
    0, 0,
    10, 0,
    10, 10,
])

# Calculate the area
area = polygon.area()

# Calculate the centroid
centroid = polygon.centroid()
```
