Metadata-Version: 2.1
Name: librtree
Version: 0.6.0
Summary: The R-tree spatial index of Guttman-Green
Home-page: https://gitlab.com/jjg/librtree-python
Author: J.J. Green
Author-email: j.j.green@gmx.co.uk
License: MIT
Keywords: R-tree,spatial-index
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/x-rst
Provides-Extra: dev
Provides-Extra: test
License-File: COPYING

The librtree-python package
===========================

Note: This code is in development: While the build and query
code is implemented, it is only lightly tested

A Python native extension implementing the R-tree spatial
index of Guttman-Green.  The code is an embedded version of
`librtree <https://gitlab.com/jjg/librtree>`_.


Development dependencies
------------------------

Just `Jansson <http://www.digip.org/jansson/>`_: this common library
may be in your operating-system's repositories. On Debian, Ubuntu and
derivatives:

.. code-block:: sh

   apt-get install libjansson-dev

On RedHat, CentOS:

.. code-block:: sh

    yum install jansson-devel

On OSX:

.. code-block:: sh

    brew install jansson

One does not need to install `librtree` itself, the library-code is
embedded within the package.
