diff --git a/CHANGES.rst b/CHANGES.rst new file mode 100644 index 0000000000000000000000000000000000000000..c244158224de0bb9cb32492fd764db83aab24557 --- /dev/null +++ b/CHANGES.rst @@ -0,0 +1,7 @@ +FORCE BDSS Changelog +-------------------- + +Release 0.1.0 +------------- + +- Initial release. Implements basic functionality of the BDSS and its plugin system. diff --git a/README.rst b/README.rst index 9e54ffd5a15772ce5d53d533ca949eedefdbde13..c011297942b43abdf9718caca0432da7c30017d7 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,6 @@ FORCE BDSS ---------- -This repository contains the implementation of the Business Decision System. It is implemented -under the FORCE project (Horizon 2020/NMBP-23-2016/721027). +This repository contains the implementation of the Business Decision System. +It is implemented under the FORCE project (Horizon 2020/NMBP-23-2016/721027). + diff --git a/doc/source/plugin_development.rst b/doc/source/plugin_development.rst index b8b7332bc1077d6021bde175a5bf9ff04038d440..ee2c083f12001cbef25b80de1e7d6eb7f72c8b4f 100644 --- a/doc/source/plugin_development.rst +++ b/doc/source/plugin_development.rst @@ -5,6 +5,10 @@ A single Plugin can provide one or more of the pluggable entities described elsewhere (MCO/KPICalculators/DataSources/NotificationListeners/UIHooks). Multiple plugins can be installed to provide a broad range of functionalities. +An example plugin implementation is available at: + +https://github.com/force-h2020/force-bdss-plugin-enthought-example + Plugins must return Factories. Each Factory provides factory methods for one of the above pluggable entities and its associated classes. diff --git a/setup.py b/setup.py index 398cc334c522a7a69aa393142a0b26b7548841e2..40e184df965b9bb87766eab6e8d1384b71f0f349 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import os from setuptools import setup, find_packages -VERSION = "0.1.0.dev2" +VERSION = "0.1.0" # Read description