forked from voldemort/voldemort
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
15 lines (14 loc) · 672 Bytes
/
Copy pathsetup.py
File metadata and controls
15 lines (14 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup
setup(name='voldemort',
version='0.1.2',
description='Python Voldemort Client',
long_description=('Pure python client for accessing Voldemort key/value stores. ' +
'Supports both raw and JSON stores. Only supports the tcp protocol ' +
'buffer interface with server-side routing.'),
packages=['voldemort', 'voldemort.protocol', 'voldemort.serialization'],
author='LinkedIn Corporation',
license='Apache 2.0',
url='http://www.project-voldemort.com',
install_requires=['protobuf>=2.3.0', 'simplejson>=2.1.1'],
setup_requires=['nose>=0.11'],
)