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 11from 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+
210setup (
311 name = 'redisgraph' ,
412 version = '2.1' ,
5-
613 description = 'RedisGraph Python Client' ,
14+ long_description = read_all ("README.md" ),
15+ long_description_content_type = 'text/markdown' ,
716 url = 'https://github.com/redislabs/redisgraph-py' ,
817 packages = find_packages (),
9- install_requires = [ 'redis' , 'PTable' ] ,
18+ install_requires = requirements ,
1019 classifiers = [
1120 'Intended Audience :: Developers' ,
1221 'License :: OSI Approved :: BSD License' ,
1322 'Programming Language :: Python :: 2.7' ,
1423 'Topic :: Database'
15- ]
24+ ],
25+ keywords = 'Redis Graph Extension' ,
26+ author = 'RedisLabs' ,
27+ author_email = 'oss@redislabs.com'
1628)
You can’t perform that action at this time.
0 commit comments