From 51637527a258bd3657dc7b18b80db760afcfd77e Mon Sep 17 00:00:00 2001 From: Lars Michael Kristensen Date: Thu, 6 Feb 2025 14:00:50 +0100 Subject: [PATCH] README update for release --- DEVELOPMENT.md | 11 +++++++++++ README.md | 11 ----------- pyproject.toml | 3 ++- tests/test_dataspace_sdk.py | 2 +- 4 files changed, 14 insertions(+), 13 deletions(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 79ab68e..5e9c3b0 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -2,6 +2,17 @@ The Swagger documentation for the data space service is available via: https://dataspaceservice.jollywater-00619340.westus2.azurecontainerapps.io/docs +# Installing as a module + +The module is part of a collection of client modules for the SFI Smart Ocean platform under the sfisop namespace on ``pypi.org``. + +To use the distributed module on pypi install this and other modules you may require for your Smart Ocean client +using pip: + +```bash +pip install sfisop-dataspace-sdk +``` + ## Local installation with pip If you want to work on this module to test, debug, or develop, this module can be diff --git a/README.md b/README.md index 143d939..4bc58f8 100644 --- a/README.md +++ b/README.md @@ -6,17 +6,6 @@ Basic client library for accessing the SmartOcean data space service to retrieve The SmartOcean dataspace service provides a REST API. -# Installing as a module - -The module is part of a collection of client modules for the SFI Smart Ocean platform under the sfisop namespace on ``pypi.org``. - -To use the distributed module on pypi install this and other modules you may require for your Smart Ocean client -using pip: - -```bash -pip install sfisop-dataspace-sdk -``` - # Sample Client Code A sample implementation of the client-side code is provided in the `main.py` file. diff --git a/pyproject.toml b/pyproject.toml index 085b388..14cbd3d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,10 @@ [tool.poetry] name = "sfisop-dataspace-sdk" -version = "1.0.0" +version = "1.0.1" description = "SDK for the SmartOcean Platform Data Space Service" authors = ["Smart Ocean Consotrium"] readme = "README.md" +license = "MIT" packages = [{include = "sfisop", from = "src"}] [tool.poetry.dependencies] diff --git a/tests/test_dataspace_sdk.py b/tests/test_dataspace_sdk.py index b363310..519916a 100644 --- a/tests/test_dataspace_sdk.py +++ b/tests/test_dataspace_sdk.py @@ -13,7 +13,7 @@ class DataSpaceSDKTest(unittest.TestCase): def setUp(self): config_file = 'configs/config-dataspace-prod.yml' self.dataspace_config = get_dataspace_config(config_file) - self.data_sources = ['virtualsensorhub', 'austevollsouth', 'austevollsouth', 'wsenseaustevoll1', 'wsenseaustevoll2'] + self.data_sources = ['virtualsensorhub', 'austevollsouth', 'austevollnorth', 'wsenseaustevoll1', 'wsenseaustevoll2'] def test_get_latest(self): client = DataSpaceClient(self.dataspace_config)