12 Star 35 Fork 13

anolis/keentune_brain

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
runzhe.wrz 提交于 2024-02-02 11:55 . update to 2.4.1
# Copyright (c) 2021-2023 Alibaba Cloud Computing Ltd.
# SPDX-License-Identifier: MulanPSL-2.0
from setuptools import setup, find_packages
setup(
name = "keentune-brain",
version = "2.4.1",
description = "KeenTune brain unit",
url = "https://gitee.com/anolis/keentune_brain",
license = "MulanPSLv2",
packages = find_packages(exclude=["test"]),
package_data = {'brain': ['brain.conf']},
python_requires = '>=3.6',
long_description = "",
classifiers = [
"Environment:: KeenTune",
"IntendedAudience :: Information Technology",
"IntendedAudience :: System Administrators",
"License :: OSI Approved :: MulanPSLv2",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
"ProgrammingLanguage :: Python"
],
data_files = [
("/etc/keentune/brain", ["brain/brain.conf"]),
("/var/log/keentune",[]),
("/var/keentune/brain/sensi_data",[]),
("/var/keentune/brain/tuning_data",[]),
],
entry_points = {
'console_scripts': ['keentune-brain=brain.brain:main']
}
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/anolis/keentune_brain.git
[email protected]:anolis/keentune_brain.git
anolis
keentune_brain
keentune_brain
master

搜索帮助