-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (27 loc) · 899 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
from setuptools import setup
setup(
name='trepl',
version='1.0',
packages=['trepl'],
author="Wes Chow",
author_email="[email protected]",
description=("Generic Tiered Replication implementation."),
license="Apache",
keywords="tiered replication copysets",
url="https://github.com/chartbeat-labs/trepl",
long_description="""
Generic Tiered Replication implementation.
Trepl generates copysets using the Tiered Replication
algorithm. Copysets are useful for picking nodes for replicating data
in a distributed system, among other use cases. See
https://github.com/chartbeat-labs/trepl for more details.
"""
,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
],
)