forked from ereOn/redis-lua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (39 loc) · 1.22 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
from setuptools import (
setup,
find_packages,
)
setup(
name='redis-lua',
author='Julien Kauffmann',
author_email='julien.kauffmann@freelan.org',
maintainer='Julien Kauffmann',
maintainer_email='julien.kauffmann@freelan.org',
version=open('VERSION').read().strip(),
description=(
"A set of tools to ease LUA scripting when dealing with Redis."
),
long_description="""\
redis-lua provides helpers that deal with redis-py to ease LUA scripting.
""",
packages=find_packages(exclude=[
'tests',
]),
install_requires=[
'redis>=2.10.3',
'six>=1.10.0,<2.0.0',
],
test_suite='tests',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Development Status :: 5 - Production/Stable',
],
)