Metadata-Version: 2.1
Name: smqtk-dataprovider
Version: 0.16.0
Summary: SMQTK Data provision abstractions and implementations
Home-page: https://github.com/Kitware/SMQTK-Dataprovider
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
Provides-Extra: filemagic
Provides-Extra: girder
Provides-Extra: psql
Requires-Dist: file-magic (>=0.4.0,<0.5.0); extra == "filemagic"
Requires-Dist: girder-client (>=3.1.3,<4.0.0); extra == "girder"
Requires-Dist: numpy (>=1.19.5,<2.0.0)
Requires-Dist: psycopg2-binary (>=2.8.6,<3.0.0); extra == "psql"
Requires-Dist: requests (>=2.25.1,<3.0.0)
Requires-Dist: smqtk-core (>=0.18)
Project-URL: Documentation, https://smqtk-dataprovider.readthedocs.io/
Project-URL: Repository, https://github.com/Kitware/SMQTK-Dataprovider
Description-Content-Type: text/markdown

# SMQTK - Data Providers

## Intent
This package builds on top of SMQTK-Core to provide data structures that are
abstractions around data and where it is fundamentally stored.

## 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
```

