diff --git a/scdata/__init__.py b/scdata/__init__.py index cb3dae0f..01261981 100644 --- a/scdata/__init__.py +++ b/scdata/__init__.py @@ -1,4 +1,4 @@ from .test import Test from .device import Device -__version__ = '0.3.6' \ No newline at end of file +__version__ = '0.4.0' diff --git a/setup.py b/setup.py index 9ca20e39..d0d1f7ed 100644 --- a/setup.py +++ b/setup.py @@ -13,11 +13,11 @@ PROJECT_URLS = { "Documentation": "https://docs.smartcitizen.me/Data%20Analysis/", "Source Code": "https://github.com/fablabbcn/smartcitizen-data", -} +} setup( name='scdata', - version= '0.3.6', + version= '0.4.0', description='Analysis of sensors and time series data', author='oscgonfer', license='GNU-GPL3.0', @@ -28,18 +28,20 @@ long_description = (""" ## scdata - Analysis of sensors and time series data - `scdata` is a **sensor data analysis framework** built with the purpose of *analysis*, - *calibration* and *post-processing* of sensor data. It is particularly - focused on sensors for environmental monitoring such as the low-cost sensors in the + `scdata` is a **sensor data analysis framework** built with the purpose of *analysis*, + *calibration* and *post-processing* of sensor data. It is particularly + focused on sensors for environmental monitoring such as the low-cost sensors in the [Smart Citizen Project](https://www.smartcitizen.me). As such provides tools for workflow automation and sensor calibration. It aims to unify several sources of data and to provide tools for analysing data by: - * Interacting with several sensors APIs + * Interacting with several sensors APIs (getting data and forwarding) + * Dispersion analysis of sensors data * Clean data, export and calculate metrics * Model sensor data and calibrate sensors * Generate data visualisations + * Generate beautiful reports """),