mirror of https://gitee.com/anolis/sysom.git
23 lines
560 B
Python
23 lines
560 B
Python
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="cec_redis",
|
|
version="0.0.1",
|
|
author="mingfeng(SunnyQjm)",
|
|
author_email="mfeng@linux.alibaba.com",
|
|
description="A redis implement for common event center",
|
|
url="",
|
|
packages=["cec_redis"],
|
|
install_requires=[
|
|
"cec_base>=0.0.1",
|
|
"redis>=4.3.4",
|
|
"schedule>=1.1.0",
|
|
"clogger==0.0.1"
|
|
],
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
)
|