File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change 11
22from 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+
311setup (
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)
You can’t perform that action at this time.
0 commit comments