Skip to content

Commit 4080ef4

Browse files
author
Meir Shpilraien (Spielrein)
authored
Merge pull request #4 from RedisGears/setup.py
extend setup.py
2 parents 7a8eb04 + bb4ee84 commit 4080ef4

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

setup.py

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,29 @@
11
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()
27

38
requirements = list(map(str.strip, open("requirements.txt").readlines()))
49

510
setup(
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+
author_email='[email protected]'
29+
)

0 commit comments

Comments
 (0)