forked from cezarsa/redis_lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.06 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2012 [email protected]
from setuptools import setup
from redis_lock import __version__
setup(
name = 'redis-lock',
version = __version__,
description = "A simple pessimistic lock implementation using Redis",
long_description = """
A simple pessimistic lock implementation using Redis based on
the algorithm described in http://redis.io/commands/setnx
""",
keywords = 'redis pessimistic lock setnx',
author = 'Cezar Sá Espinola',
author_email = '[email protected]',
url = 'http://github.com/cezarsa/redis_lock',
license = 'MIT',
classifiers = ['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7'
],
packages = ['redis_lock'],
package_dir = {"redis_lock": "redis_lock"}
)