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 1
1
2
2
#!/usr/bin/env python
3
3
from setuptools import setup , find_packages
4
+ import io
4
5
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 ())
5
11
6
12
setup (
7
13
name = 'redisearch' ,
8
14
version = '0.8.0' ,
9
-
10
15
description = 'RedisSearch Python Client' ,
16
+ long_description = read_all ("README.md" ),
17
+ long_description_content_type = 'text/markdown' ,
11
18
url = 'http://github.com/RedisLabs/redisearch-py' ,
12
19
packages = find_packages (),
13
20
install_requires = ['redis' , 'hiredis' , 'rmtest' ],
18
25
'Programming Language :: Python :: 2.7' ,
19
26
'Topic :: Database' ,
20
27
'Topic :: Software Development :: Testing'
21
- ]
28
+ ],
29
+ keywords = 'Redis Search Extension' ,
30
+ author = 'RedisLabs' ,
31
+ author_email = 'oss@redislabs.com'
22
32
)
You can’t perform that action at this time.
0 commit comments