-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (50 loc) · 1.75 KB
/
setup.py
File metadata and controls
53 lines (50 loc) · 1.75 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from pathlib import Path
from setuptools import setup, Extension
here = Path(__file__).parent
readme = (here / "README.md").read_text()
module = Extension(
'HLL',
sources=['src/hll.c', 'lib/murmur2.c'],
include_dirs=['src', 'lib']
)
setup(
name='HLL',
version='3.0.0',
description='Fast HyperLogLog for Python',
author='Joshua Andersen',
author_email='josh.h.andersen@gmail.com',
maintainer='Joshua Andersen',
url='https://github.com/ascv/HyperLogLog',
ext_modules=[module],
zip_safe=False,
python_requires='>=3.9',
keywords=[
'hyperloglog', 'cardinality', 'cardinality estimate',
'approximate counting', 'probabilistic data structures',
'sketch', 'data science', 'big data', 'streaming algorithms',
'memory efficient', 'set cardinality', 'unique count',
],
license='MIT',
long_description=readme,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Programming Language :: C',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering',
],
project_urls={
'Source': 'https://github.com/ascv/HyperLogLog',
'Bug Tracker': 'https://github.com/ascv/HyperLogLog/issues',
},
)