forked from svpcom/hyperloglog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (23 loc) · 802 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (23 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
from distutils.core import setup
version = '0.0.9'
setup(
name='hyperloglog',
version=version,
maintainer='Vasily Evseenko',
maintainer_email='svpcom@gmail.com',
author='Vasily Evseenko',
author_email='svpcom@gmail.com',
packages=['hyperloglog', 'hyperloglog.test'],
description='HyperLogLog cardinality counter',
url='https://github.com/svpcom/hyperloglog',
license='LGPL 2.1 or later',
long_description=\
"""
Python implementation of the Hyper LogLog and Sliding Hyper LogLog cardinality counter
algorithms. Added bias correction from HLL++.
http://algo.inria.fr/flajolet/Publications/FlFuGaMe07.pdf
http://hal.archives-ouvertes.fr/docs/00/46/53/13/PDF/sliding_HyperLogLog.pdf
http://research.google.com/pubs/pub40671.html
""",
)