forked from RedisGears/redisgears-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 866 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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,
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='[email protected]'
)