-
Notifications
You must be signed in to change notification settings - Fork 88
/
setup.py
48 lines (42 loc) · 1.37 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
import redis_shard
def read_file(*path):
base_dir = os.path.dirname(__file__)
file_path = (base_dir, ) + tuple(path)
return open(os.path.join(*file_path)).read()
setup(
name="redis-shard",
url="https://github.com/zhihu/redis-shard",
license="BSD License",
author="Zhihu Inc.",
author_email="[email protected]",
maintainer="Young King",
maintainer_email="[email protected]",
description="Redis Sharding API",
long_description=(
read_file("README.rst") + "\n\n" +
"Change History\n" +
"===============\n\n" +
read_file("CHANGES.rst")),
version=redis_shard.__version__,
packages=["redis_shard"],
include_package_data=True,
zip_safe=False,
install_requires=['redis>=3.0.0'],
tests_require=['Nose'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
)