Metadata-Version: 2.1
Name: alphashapy
Version: 0.1
Summary: A Python package for constructing alpha shapes and alpha hulls for both positive and negative alphas.
Author: Itai Pelles
License: Apache-2.0
Project-URL: Homepage, https://github.com/itaipelles/alphashapy
Project-URL: Changelog, https://github.com/itaipelles/alphashapy/releases
Project-URL: Issues, https://github.com/itaipelles/alphashapy/issues
Project-URL: CI, https://github.com/itaipelles/alphashapy/actions
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

# alphashapy

[![PyPI](https://img.shields.io/pypi/v/alphashapy.svg)](https://pypi.org/project/alphashapy/)
[![Tests](https://github.com/itaipelles/alphashapy/actions/workflows/test.yml/badge.svg)](https://github.com/itaipelles/alphashapy/actions/workflows/test.yml)
[![Changelog](https://img.shields.io/github/v/release/itaipelles/alphashapy?include_prereleases&label=changelog)](https://github.com/itaipelles/alphashapy/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/itaipelles/alphashapy/blob/main/LICENSE)

A Python package for constructing alpha shapes and alpha hulls for both positive and negative alphas.

## Installation

Install this library using `pip`:
```bash
pip install alphashapy
```
## Usage

Usage instructions go here.

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:
```bash
cd alphashapy
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
python -m pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```
