Metadata-Version: 2.4
Name: ktree
Version: 0.0.2
Summary: This module provides a hierarchical spatial ordering structure, which can be used as a QuadTree or an Octree.
Home-page: https://github.com/SealtielFreak/ktree
Author: SealtielFreak
Author-email: sealtielfreak@yandex.com
License: WTFPL
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# KTree

![Python - Version](https://img.shields.io/badge/python-%3E%3D3.8-brightgreen)
![PyPI - Version](https://img.shields.io/pypi/v/ktree?color=green&label=pip%20install%20ktree)
![Python - Implementation](https://img.shields.io/pypi/implementation/ktree)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/ktree)

## Description

This package provides several hierarchical grouping structures, including:
 
- [KDTree](https://en.wikipedia.org/wiki/K-d_tree).
- NTree (Applicable as [QuadTree](https://en.wikipedia.org/wiki/Quadtree) or [Octree](https://en.wikipedia.org/wiki/Octree))

Configurable for multiple dimensions and easy implementation in projects.

## Install

### From pip

```
pip install ktree
```

### From GitHub

```
pip install git+https://github.com/SealtielFreak/ktree.git
```
