From 7d9115fb2b9a83875016926ba3b7841bfb45dad3 Mon Sep 17 00:00:00 2001 From: Stefano Alberto Russo Date: Sun, 15 May 2022 02:11:06 +0200 Subject: [PATCH] Bump to v1.0.1 and added the description for PyPI. --- containers/timeseria/tag_push_multiarch.sh | 2 +- docs/conf.py | 2 +- setup.py | 9 +++++++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/containers/timeseria/tag_push_multiarch.sh b/containers/timeseria/tag_push_multiarch.sh index c955c9d..39235d9 100755 --- a/containers/timeseria/tag_push_multiarch.sh +++ b/containers/timeseria/tag_push_multiarch.sh @@ -2,7 +2,7 @@ set -e USER="sarusso" -VERSION="v1.0.0" +VERSION="v1.0.1" # Images are also tagged and pushed as "latest" below diff --git a/docs/conf.py b/docs/conf.py index ea49b85..f262a0b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = 'Stefano Alberto Russo' # The full version, including alpha/beta/rc tags -release = 'v1.0.0' +release = 'v1.0.1' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index c2a4f35..da97f50 100644 --- a/setup.py +++ b/setup.py @@ -3,8 +3,13 @@ from setuptools import setup, find_packages setup(name='timeseria', - version='1.0.0', - description='A time series processing library', + version='1.0.1', + description='An object-oriented time series processing library', + long_description="""Timeseria is an object-oriented time series processing library which aims at making it easy to manipulate time series data and to build statistical + and machine learning models on top of it.\n\nCheck out the GitHub project for more info: [Timeseria on GitHub](https://github.com/sarusso/Timeseria). + \n\nExample plot: + ![Time series plot](https://raw.githubusercontent.com/sarusso/Timeseria/master/docs/altogether.png "Timeseria at work")""", + long_description_content_type='text/markdown', url="https://github.com/sarusso/timeseria", author='Stefano Alberto Russo', author_email='stefano.russo@gmail.com',