from glob import glob
from setuptools import setup, find_packages
import os
ser = "/usr/lib/systemd/system/systrac-mcpserver.service"
if os.path.isfile(ser):
os.remove(ser)
setup(
name="systrace_mcp",
version="1.1.1",
author="xu hou",
author_email="houxu5@h-partners.com",
description="MCP Server for SystraceFail Slow Detection for AI Model Training and Inference",
url="https://gitcode.com/openeuler/sysTrace",
keywords=["Fail Slow Detection", "Group Compare", "AI Model", "MCP Server"],
packages=find_packages(where=".", exclude=("tests", "tests.*")),
data_files=[
('/etc/systrace/config/', glob('config/ftp_config.json')),
('/usr/lib/systemd/system/', glob('service/*')),
],
install_requires=[
"systrace_failslow",
"mcp",
"paramiko",
"fastapi"
],
entry_points={
"console_scripts": [
"systrace-mcpserver=systrace_mcp.mcp_server:main",
"systrace-openapi=systrace_mcp.openapi_server:main"
]
}
)