-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
39 lines (35 loc) · 1.16 KB
/
setup.py
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
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='tdigest',
version='0.6.0.1',
description='T-Digest data structure',
author='Cam Davidson-pilon',
author_email='[email protected]',
url='https://github.com/CamDavidsonPilon/tdigest',
packages=['tdigest'],
long_description=read('README.md'),
install_requires=[
"accumulation_tree",
"pyudorandom"
],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
],
license="MIT",
keywords='percentile, median, probabilistic data structure, quantile, distributed, qdigest, tdigest, streaming, pyspark',
package_data={
"tdigest": [
"../README.md",
"../LICENSE.txt",
"../MANIFEST",
]
},
extras_require = { 'tests': [ 'pytest', 'pytest-timeout', 'pytest-cov', 'numpy' ] },
)