Skip to content

Commit 7028635

Browse files
committed
Fix description
1 parent 831afd9 commit 7028635

2 files changed

Lines changed: 5 additions & 12 deletions

File tree

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ Python implementation of the Hyper LogLog and Sliding Hyper LogLog cardinality c
22
--------------------------------------------------------------------------------------------------
33

44
Installation:
5-
============
5+
=============
66

77
Use ``pip install hyperloglog`` to install from PyPI.
88

99
Usage:
10-
=====
10+
======
1111

1212
.. code-block:: python
1313

setup.py

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import setup
44

5-
version = '0.1.6'
5+
version = '0.1.7'
66

77
setup(
88
name='hyperloglog',
@@ -17,13 +17,6 @@
1717
install_requires=['msgpack', 'numpy'],
1818
python_requires='>=3.7',
1919
license='LGPL 2.1 or later',
20-
long_description=\
21-
"""
22-
Python implementation of the Hyper LogLog and Sliding Hyper LogLog cardinality counter
23-
algorithms. Added bias correction from HLL++.
24-
25-
http://algo.inria.fr/flajolet/Publications/FlFuGaMe07.pdf
26-
http://hal.archives-ouvertes.fr/docs/00/46/53/13/PDF/sliding_HyperLogLog.pdf
27-
http://research.google.com/pubs/pub40671.html
28-
""",
20+
long_description=open('README.rst').read(),
21+
long_description_content_type='text/x-rst',
2922
)

0 commit comments

Comments
 (0)