forked from kpdemetriou/tdigest-cffi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.34 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
from os import path
from setuptools import setup, find_packages
with open(path.join(path.abspath(path.dirname(__file__)), "README.rst")) as handle:
readme = handle.read()
setup(
name="qtdigest-cffi",
version="0.5.0",
description="A data structure for accurate on-line accumulation of rank-based statistics.",
long_description=readme,
url="https://github.com/QunarOPS/qtdigest-cffi.git",
author="Phil Demetriou",
author_email="[email protected]",
license="BSD",
packages=find_packages(exclude=["tests"]),
setup_requires=["cffi>=1.4.0"],
cffi_modules=["build.py:tdigest_ffi"],
install_requires=["cffi>=1.4.0"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: BSD License",
"Programming Language :: C",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.7',
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Utilities",
],
)