From cbe3c6861588066d4b5b92fa81dfb40fb9cf53f9 Mon Sep 17 00:00:00 2001 From: JA Viljoen Date: Tue, 6 Oct 2020 14:27:04 +0200 Subject: [PATCH] Update project links (remove GitHub references) --- LICENSE | 2 +- README.rst | 8 ++++---- setup.py | 8 ++++++-- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/LICENSE b/LICENSE index d202eb1..db2c167 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 Jack Viljoen +Copyright (c) 2020 JA Viljoen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.rst b/README.rst index 5b614a7..4f59cc8 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,6 @@ -=================== -lttb.py |pypi| |ci| -=================== +================ +lttb |pypi| |ci| +================ Numpy implementation of Steinarsson’s *Largest-Triangle-Three-Buckets* algorithm for downsampling time series–like data @@ -50,7 +50,7 @@ It was downloaded from http://flot.base.is/ and converted from JSON to CSV. This is what it looks like, downsampled to 100 points: -.. image:: https://github.com/javiljoen/lttb.py/raw/master/tests/timeseries.png +.. image:: https://git.sr.ht/~javiljoen/lttb-numpy/blob/master/tests/timeseries.png Input validation diff --git a/setup.py b/setup.py index 48109dd..eae83fb 100644 --- a/setup.py +++ b/setup.py @@ -3,8 +3,12 @@ import setuptools setuptools.setup( name="lttb", use_scm_version=True, - url="https://github.com/javiljoen/lttb.py", - author="Jack Viljoen", + url="https://sr.ht/~javiljoen/lttb/", + project_urls={ + "Source": "https://git.sr.ht/~javiljoen/lttb-numpy", + "Tracker": "https://todo.sr.ht/~javiljoen/lttb", + }, + author="JA Viljoen", author_email="javiljoen@javiljoen.net", description="Largest-Triangle-Three-Buckets algorithm for downsampling time series-like data", long_description=open("README.rst").read(), -- 2.45.2