File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Expand file tree Collapse file tree 1 file changed +20
-1
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 ()
27
38requirements = list (map (str .strip , open ("requirements.txt" ).readlines ()))
49
510setup (
611 name = 'gearsclient' ,
712 version = '0.1' ,
13+ description = 'RedisGears Python Client' ,
14+ long_description = read_all ("README.md" ),
15+ long_description_content_type = 'text/markdown' ,
16+ url = 'https://github.com/RedisGears/redisgears-p' ,
817 packages = find_packages (),
918 install_requires = requirements ,
10- )
19+ classifiers = [
20+ 'Development Status :: 4 - Beta' ,
21+ 'Intended Audience :: Developers' ,
22+ 'License :: OSI Approved :: BSD License' ,
23+ 'Programming Language :: Python :: 2.7' ,
24+ 'Topic :: Database'
25+ ],
26+ keywords = 'Redis Gears Extension' ,
27+ author = 'RedisLabs' ,
28+ 29+ )
You can’t perform that action at this time.
0 commit comments