From bb4ee84757b2791b753fd313c446c2c1e131ce72 Mon Sep 17 00:00:00 2001 From: Guy Korland Date: Tue, 14 Jan 2020 16:51:52 +0200 Subject: [PATCH] extend setup.py --- setup.py | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8969100..480cf95 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,29 @@ from setuptools import setup, find_packages +import io + +def read_all(f): + with io.open(f, encoding="utf-8") as I: + return I.read() requirements = list(map(str.strip, open("requirements.txt").readlines())) setup( name='gearsclient', version='0.1', + description='RedisGears Python Client', + long_description=read_all("README.md"), + long_description_content_type='text/markdown', + url='https://github.com/RedisGears/redisgears-p', packages=find_packages(), install_requires=requirements, -) \ No newline at end of file + classifiers=[ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Programming Language :: Python :: 2.7', + 'Topic :: Database' + ], + keywords='Redis Gears Extension', + author='RedisLabs', + author_email='oss@redislabs.com' +)