mirror of https://gitee.com/anolis/sysom.git
27 lines
631 B
Python
27 lines
631 B
Python
# -*- coding: utf-8 -*- #
|
|
"""
|
|
Author: mingfeng (SunnyQjm)
|
|
Created: 2022/07/24
|
|
Description:
|
|
"""
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="cec_base",
|
|
version="0.0.1",
|
|
author="mingfeng(SunnyQjm)",
|
|
author_email="mfeng@linux.alibaba.com",
|
|
description="A common event center interface definition package",
|
|
url="",
|
|
packages=["cec_base"],
|
|
install_requires=[
|
|
"clogger==0.0.1",
|
|
"anyio>=3.6.2"
|
|
],
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
)
|