-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (58 loc) · 2.28 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# -*- Mode: Python; tab-width: 4; indent-tabs-mode: nil; -*-
from setuptools import setup
setup(
name='tako',
version='0.0.26',
packages=['tako', 'tako.utils'],
scripts=[
'bin/tako-cluster',
'bin/tako-coordinator',
'bin/tako-node',
'bin/tako-proxy'
],
install_requires = [
'socketless >= 0.4.0',
'pytc >= 0.8',
'argparse',
'pyyaml',
'simplejson',
'urllib3'
],
zip_safe=True,
author = "Daniel Norberg",
author_email = "[email protected]",
url = "https://github.com/danielnorberg/tako/",
description = "Tako: A distributed data store.",
long_description = """\
Tako is a distributed key-value data store. It aims to provide high
scalability and availability through a shared nothing architecture,
consistent hash based data partitioning, read repair with time
stamping and live migration. An included coordinator server can be
used as a single point of configuration to distribute cluster
configuration to tako nodes in a cluster.
Tako includes a http proxy server that can be used to
interface with a tako cluster using normal HTTP GET/POST.
Within a cluster, tako nodes communicate using a binary
protocol and the socketless and syncless libraries.
Tako makes use of libev/libevent/kqueue/kpoll if present.
Tokyo Cabinet is used for data storage.
Project Home: https://github.com/danielnorberg/tako
""",
license="Apache License, Version 2.0",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: No Input/Output (Daemon)",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)