Skip to content

Commit

Permalink
providing description
Browse files Browse the repository at this point in the history
  • Loading branch information
protivinsky committed Nov 28, 2022
1 parent 68a8b01 commit 352c9bb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
5 changes: 5 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -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)
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion pytdigest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,4 +201,4 @@

__all__ = ['TDigest', 'HandlingInvalid']
__author__ = 'Tomas Protivinsky'
__version__ = '0.1.0'
__version__ = '0.1.1'
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down Expand Up @@ -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",
},
)

0 comments on commit 352c9bb

Please sign in to comment.