From 352c9bbba573d60f4bd82f063e3532cae74b48d0 Mon Sep 17 00:00:00 2001 From: Tomas Protivinsky Date: Mon, 28 Nov 2022 22:17:15 +0000 Subject: [PATCH] providing description --- changelog.rst | 5 +++++ pytdigest/__init__.py | 2 +- setup.py | 9 +++++++-- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/changelog.rst b/changelog.rst index 21c05b2..61faf8e 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,6 +1,11 @@ Changelog ========= +Version 0.1.1 (2022-11-28) +-------------------------- + +* Providing long description for PyPI repository + Version 0.1.0 (2022-11-28) -------------------------- diff --git a/pytdigest/__init__.py b/pytdigest/__init__.py index d907a09..3a14301 100644 --- a/pytdigest/__init__.py +++ b/pytdigest/__init__.py @@ -201,4 +201,4 @@ __all__ = ['TDigest', 'HandlingInvalid'] __author__ = 'Tomas Protivinsky' -__version__ = '0.1.0' +__version__ = '0.1.1' diff --git a/setup.py b/setup.py index 97a3859..d57c2a6 100644 --- a/setup.py +++ b/setup.py @@ -26,10 +26,14 @@ def get_ext_filename(self, ext_name): return super().get_ext_filename(ext_name) +with open('README.rst') as f: + readme = f.read() + setup( name='pytdigest', - version='0.1.0', + version='0.1.1', description='Python package for *fast* TDigest calculation.', + long_description=readme, #py_modules=['pytdigest'], ext_modules=[CTypesExtension( name=os.path.join('pytdigest', 'tdigest'), @@ -59,7 +63,8 @@ def get_ext_filename(self, ext_name): #package_dir={"": "pytdigest"}, packages=find_packages(where="."), # Required project_urls={ # Optional - "Source": "https://github.com/protivinsky/pytdigest", + "Homepage": "https://github.com/protivinsky/pytdigest", + "Documentation": "https://protivinsky.github.io/pytdigest", }, )