diff --git a/docs/index.rst b/docs/index.rst --- a/docs/index.rst +++ b/docs/index.rst @@ -52,10 +52,16 @@ Heritage stack. Each component name is linked to the development documentation of the corresponding Python module. +:ref:`swh.auth ` + low-level library used by modules needing keycloak authentication + :ref:`swh.core ` low-level utilities and helpers used by almost all other modules in the stack +:ref:`swh.counters ` + SWH object counters scaffolding + :ref:`swh.dataset ` public datasets and periodic data dumps of the archive released by Software Heritage @@ -178,7 +184,9 @@ contributing/index tutorials/index API documentation + swh.auth swh.core + swh.counters swh.dataset swh.deposit swh.fuse diff --git a/requirements-swh-dev.txt b/requirements-swh-dev.txt --- a/requirements-swh-dev.txt +++ b/requirements-swh-dev.txt @@ -1,7 +1,9 @@ # Add here internal Software Heritage dependencies, one per line. # Dependencies need to be ordered in a way that ensure only # development versions will be used (not the release ones hosted on PyPI). +../swh-auth[django] ../swh-core[http,db,logging] +../swh-counters ../swh-model ../swh-journal ../swh-objstorage[testing] diff --git a/requirements-swh.txt b/requirements-swh.txt --- a/requirements-swh.txt +++ b/requirements-swh.txt @@ -1,6 +1,8 @@ # Add here internal Software Heritage dependencies, one per line. +swh.auth[django] swh.core[db,http] -swh.deposit +swh.counters +swh.deposit[server] swh.fuse swh.graph swh.indexer