-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 825 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
__version__ = '0.2'
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
setup(name='pylock',
version=__version__,
description='Python Distributed Lock',
long_description=README,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
],
keywords='lock redis',
author="Nathan Duthoit",
author_email="[email protected]",
url="http://github.com/waveaccounting/pylock",
license="BSD",
packages=find_packages(),
test_suite="pylock.tests",
include_package_data=True,
zip_safe=False,
tests_require=['Mock>=0.8', 'nose'],
install_requires=[
"redis>=2.4.5",
]
)