mirror of https://gitee.com/anolis/sysom.git
27 lines
678 B
Python
27 lines
678 B
Python
# -*- coding: utf-8 -*- #
|
|
"""
|
|
Time 2023/03/09 13:58
|
|
Author: mingfeng (SunnyQjm)
|
|
Email mfeng@linux.alibaba.com
|
|
File setup_sysom_utils.py
|
|
Description:
|
|
"""
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="cmg_redis",
|
|
version="0.0.1",
|
|
author="mingfeng(SunnyQjm)",
|
|
author_email="mfeng@linux.alibaba.com",
|
|
description="A redis implement for common event center",
|
|
install_requires=[
|
|
"clogger==0.0.1",
|
|
"cmg_base>=0.0.1"
|
|
],
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
)
|