File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 11
22#!/usr/bin/env python
33from setuptools import setup , find_packages
4+ import io
45
6+ def read_all (f ):
7+ with io .open (f , encoding = "utf-8" ) as I :
8+ return I .read ()
9+
10+ requirements = map (str .strip , open ("requirements.txt" ).readlines ())
511
612setup (
713 name = 'redisearch' ,
814 version = '0.8.0' ,
9-
1015 description = 'RedisSearch Python Client' ,
16+ long_description = read_all ("README.md" ),
17+ long_description_content_type = 'text/markdown' ,
1118 url = 'http://github.com/RedisLabs/redisearch-py' ,
1219 packages = find_packages (),
1320 install_requires = ['redis' , 'hiredis' , 'rmtest' ],
1825 'Programming Language :: Python :: 2.7' ,
1926 'Topic :: Database' ,
2027 'Topic :: Software Development :: Testing'
21- ]
28+ ],
29+ keywords = 'Redis Search Extension' ,
30+ author = 'RedisLabs' ,
31+ author_email = 'oss@redislabs.com'
2232)
You can’t perform that action at this time.
0 commit comments