Metadata-Version: 2.1
Name: smqtk-descriptors
Version: 0.16.0
Summary: Algorithms, data structures and utilities around computingdescriptor vectors from data.
Home-page: https://github.com/Kitware/SMQTK-Descriptors
License: BSD-3-Clause
Author: Kitware, Inc.
Author-email: smqtk-developers@kitware.com
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: numpy (>=1.19.5,<2.0.0)
Requires-Dist: smqtk-core (>=0.18.0)
Requires-Dist: smqtk-dataprovider (>=0.16.0)
Project-URL: Documentation, https://smqtk-descriptors.readthedocs.io/
Project-URL: Repository, https://github.com/Kitware/SMQTK-Descriptors
Description-Content-Type: text/markdown

# SMQTK - Descriptors

## Intent
This package aims to provide interfaces for algorithms and data structures
around computing descriptor vectors from input data.

This package also includes a utility function that can map an arbitrary
function to some set of input iterables, not unlike the python `map`, except
that this version is parallelized across threads or processes. This function
also does not block and may be used for parallelized stream processing.

## Documentation
You can build the sphinx documentation locally for the most up-to-date
reference:
```bash
# Install dependencies
poetry install
# Navigate to the documentation root.
cd docs
# Build the docs.
poetry run make html
# Open in your favorite browser!
firefox _build/html/index.html
```

