Metadata-Version: 2.4
Name: skosprovider
Version: 1.4.0
Summary: Abstraction layer for SKOS vocabularies.
Project-URL: History, https://github.com/OnroerendErfgoed/skosprovider/blob/master/HISTORY.rst
Project-URL: Tracker, https://github.com/OnroerendErfgoed/skosprovider/issues
Project-URL: Source, https://github.com/OnroerendErfgoed/skosprovider
Project-URL: Documentation, https://skosprovider.readthedocs.io/en/latest/
Author-email: Flanders Heritage Agency <ict@onroerenderfgoed.be>
License-File: LICENSE
Keywords: rdf,skos,skosprovider,thesauri,vocabularies
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Pyramid
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Requires-Python: <3.13.11,>=3.10
Requires-Dist: hatch>=1.15.1
Requires-Dist: html5lib==1.1
Requires-Dist: language-tags==1.2.0
Requires-Dist: pyld==2.0.3
Requires-Dist: rfc3987==1.3.8
Requires-Dist: twine>=6.2.0
Provides-Extra: dev
Requires-Dist: black>=25.1.0; extra == 'dev'
Requires-Dist: flake8-bugbear>=24.12.12; extra == 'dev'
Requires-Dist: flake8-import-order>=0.18.2; extra == 'dev'
Requires-Dist: flake8>=7.1.2; extra == 'dev'
Requires-Dist: pre-commit>=4.1.0; extra == 'dev'
Requires-Dist: pytest-cov==6.2.1; extra == 'dev'
Requires-Dist: pytest==8.3.5; extra == 'dev'
Requires-Dist: sphinx-rtd-theme==3.0.2; extra == 'dev'
Requires-Dist: sphinx==8.1.3; extra == 'dev'
Description-Content-Type: text/x-rst

skosprovider: vocabulary abstraction
====================================

This library helps abstract vocabularies (thesauri, controlled lists, authority
files). It depends heavily on the 
`SKOS <http://www.w3.org/2004/02/skos>`_ specification, but adds elements
of other specifications such as the 
`ISO 25964 SKOS extension <http://pub.tenforce.com/schemas/iso25964/skos-thes/>`_ 
where deemed useful.

.. image:: https://img.shields.io/pypi/v/skosprovider.svg
    :target: https://pypi.python.org/pypi/skosprovider
.. image:: https://readthedocs.org/projects/skosprovider/badge/?version=latest
    :target: https://readthedocs.org/projects/skosprovider/?badge=latest
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5767151.svg
    :target: https://doi.org/10.5281/zenodo.5767151
.. image:: https://app.travis-ci.com/onroerenderfgoed/skosprovider.svg?branch=develop
    :target: https://app.travis-ci.com/onroerenderfgoed/skosprovider
.. image:: https://coveralls.io/repos/OnroerendErfgoed/skosprovider/badge.svg?branch=develop
    :target: https://coveralls.io/github/OnroerendErfgoed/skosprovider?branch=develop
.. image:: https://scrutinizer-ci.com/g/onroerenderfgoed/skosprovider/badges/quality-score.png?b=develop
    :target: https://scrutinizer-ci.com/g/onroerenderfgoed/skosprovider/?branch=develop

Building the docs
-----------------

More information about this library can be found in `docs`. The docs can be 
built using `Sphinx <http://sphinx-doc.org>`_.

Please make sure you have installed Sphinx in the same environment where 
skosprovider is present.

.. code-block:: bash

    # activate your virtual environment
    $ pip install -r requirements.txt
    $ python setup.py develop
    $ cd docs
    $ make html

