forked from RedisBloom/redisbloom-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 877 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
from setuptools import setup, find_packages
import io
def read_all(f):
with io.open(f, encoding="utf-8") as I:
return I.read()
requirements = map(str.strip, open("requirements.txt").readlines())
setup(
name='redisbloom',
version='0.3.1',
description='RedisBloom Python Client',
long_description=read_all("README.md"),
long_description_content_type='text/markdown',
url='https://github.com/redislabs/redisbloom-py',
packages=find_packages(),
install_requires=requirements,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Topic :: Database'
],
keywords='Redis Extension Probabilistic TopK Cuckoo-Filter Bloom-Filter Count-min-sketch',
author='RedisLabs',
author_email='[email protected]'
)