forked from rfyiamcool/redis_netlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (27 loc) · 945 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
30
31
#coding:utf-8
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='redis_netlock',
version = '1.6',
author="ruifengyun",
author_email="[email protected]",
url="http://xiaorui.cc/",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=['redis'],
packages=['redis_netlock'],
platforms=["Any"],
license = "MIT",
keywords=['redis lock distributed','fengyun'],
description="一个用redis做的分布式锁,含有超时及重试机制.",
long_description=open('README.md').read(),
)