-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (31 loc) · 953 Bytes
/
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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='qtdigest',
version='0.3.1',
description='python implementation of Dunning\'s T-Digest',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/QunarOPS/qtdigest',
author='zskymn',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
],
packages=['qtdigest'],
install_requires=['bintrees>=2.0.0,<=2.0.7'],
extras_require={
'test': ['pytest', 'pytest-cov'],
},
package_data={
'qtdigest': ['../README.md'],
}
)