File tree 1 file changed +15
-3
lines changed
1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
+ import io
3
+
4
+ def read_all (f ):
5
+ with io .open (f , encoding = "utf-8" ) as I :
6
+ return I .read ()
7
+
8
+ requirements = map (str .strip , open ("requirements.txt" ).readlines ())
9
+
2
10
setup (
3
11
name = 'redisgraph' ,
4
12
version = '2.1' ,
5
-
6
13
description = 'RedisGraph Python Client' ,
14
+ long_description = read_all ("README.md" ),
15
+ long_description_content_type = 'text/markdown' ,
7
16
url = 'https://github.com/redislabs/redisgraph-py' ,
8
17
packages = find_packages (),
9
- install_requires = [ 'redis' , 'PTable' ] ,
18
+ install_requires = requirements ,
10
19
classifiers = [
11
20
'Intended Audience :: Developers' ,
12
21
'License :: OSI Approved :: BSD License' ,
13
22
'Programming Language :: Python :: 2.7' ,
14
23
'Topic :: Database'
15
- ]
24
+ ],
25
+ keywords = 'Redis Graph Extension' ,
26
+ author = 'RedisLabs' ,
27
+
16
28
)
You can’t perform that action at this time.
0 commit comments