File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ Python implementation of the Hyper LogLog and Sliding Hyper LogLog cardinality c
22--------------------------------------------------------------------------------------------------
33
44Installation:
5- ============
5+ =============
66
77Use ``pip install hyperloglog `` to install from PyPI.
88
99Usage:
10- =====
10+ ======
1111
1212.. code-block :: python
1313
Original file line number Diff line number Diff line change 22
33from setuptools import setup
44
5- version = '0.1.6 '
5+ version = '0.1.7 '
66
77setup (
88 name = 'hyperloglog' ,
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)
You can’t perform that action at this time.
0 commit comments