Skip to content

Commit 1654b83

Browse files
gkorlandashtul
authored andcommitted
Update setup.py (#10)
* Update setup.py * Fix keywords
1 parent 05dd326 commit 1654b83

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

setup.py

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,29 @@
11

22
from setuptools import setup, find_packages
3+
import io
4+
5+
def read_all(f):
6+
with io.open(f, encoding="utf-8") as I:
7+
return I.read()
8+
9+
requirements = map(str.strip, open("requirements.txt").readlines())
10+
311
setup(
412
name='redisbloom',
513
version='0.3.0',
6-
714
description='RedisBloom Python Client',
15+
long_description=read_all("README.md"),
16+
long_description_content_type='text/markdown',
817
url='https://github.com/redislabs/redisbloom-py',
918
packages=find_packages(),
10-
install_requires=['redis', 'hiredis'],
19+
install_requires=requirements,
1120
classifiers=[
1221
'Intended Audience :: Developers',
1322
'License :: OSI Approved :: BSD License',
1423
'Programming Language :: Python :: 2.7',
1524
'Topic :: Database'
16-
]
25+
],
26+
keywords='Redis Extension Probabilistic TopK Cuckoo-Filter Bloom-Filter Count-min-sketch',
27+
author='RedisLabs',
28+
author_email='oss@redislabs.com'
1729
)

0 commit comments

Comments
 (0)