-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
30 lines (29 loc) · 1.03 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
from setuptools import setup
setup(
name="redis-hashring",
version="0.4.0",
author="Close Engineering",
author_email="[email protected]",
url="https://github.com/closeio/redis-hashring",
license="MIT",
description=(
"Python library for distributed applications using a Redis hash ring"
),
install_requires=["redis>=3"],
platforms="any",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
packages=["redis_hashring"],
)