diff --git a/contrib/python_modules/sectra_dpat_client/README.md b/contrib/python_modules/sectra_dpat_client/README.md index 00062b0..6df7d2d 100644 --- a/contrib/python_modules/sectra_dpat_client/README.md +++ b/contrib/python_modules/sectra_dpat_client/README.md @@ -6,13 +6,13 @@ This python package aims to facilite the development of AI applications integrat Please note that for now, not every feature is implemented but the package can easily be enriched: -* some endpoints are missing (e.g., slide downloading) +* Some endpoints are missing (e.g., slide downloading) * QIDO client is pretty basic ### What it implements -* A client for the DPAT AI API (`DPATAIClient`) -* A client for the DPAT QIDO API (`DPATQidoClient`) +* A client for the DPAT IA-API ("AI") API (`DPATAIClient`) +* A client for the DICOMWEB QIDO API (`DPATQidoClient`) * A set of pydantic models to encapsulate and validate data sent and received from DPAT @@ -171,4 +171,4 @@ One can lint the code using the following command: * HL7 API client * More detailed data validation (e.g., min and max lengths of arrays) -* Missing DPAT endpoints \ No newline at end of file +* Missing DPAT endpoints diff --git a/contrib/python_modules/sectra_dpat_client/setup.py b/contrib/python_modules/sectra_dpat_client/setup.py index 65ac1a4..a4f27b2 100644 --- a/contrib/python_modules/sectra_dpat_client/setup.py +++ b/contrib/python_modules/sectra_dpat_client/setup.py @@ -19,7 +19,7 @@ def _load_requirements(req_file: str): setup( name="sectra_dpat_client", version=__version__, - author="Primaa", + author="Primaa, Sectra", description="Client for Sectra DPAT server", install_requires=_load_requirements("requirements.txt"), extras_require={"dev": _load_requirements("extra_requirements.txt")},