forked from EvandroLG/serialized-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 685 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 685 Bytes
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
# SerializedRedis
# author: Evandro Leopoldino Gonçalves <evandrolgoncalves@gmail.com>
# https://github.com/evandrolg
# License: MIT
from setuptools import setup
import os
setup(
name='serialized-redis',
version='0.1.6',
description='A solution to have lists and dictionaries serialized using redis-py.',
author='EvandroLG',
author_email='evandrolgoncalves@gmail.com',
keywords=['Redis', 'redis-py', 'serialized datas'],
url='http://github.com/EvandroLG/serialized-redis',
license='MIT',
tests_require='pytest>=2.5.0',
install_requires=[
'redis',
],
packages=['serialized_redis']
)