-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
29 lines (28 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages
setup(
name='xiyan_mcp_server', # 包的名字
version='0.1.2', # 版本号
packages=find_packages(), # 自动找到项目中的包
install_requires=[ # 必要的包依赖
# 'numpy', # 示例:若有依赖包,将其列在此
'mcp',
'mysql-connector-python>=9.1.0',
'sqlalchemy',
'llama_index',
'yaml',
'pandas',
'pymysql'
],
author='Bruce Luo', # 作者
author_email='[email protected]', # 作者邮箱
description='A MCP server of natural language interface to Database', # 简短描述
long_description=open('README.md').read(), # 从 README 文件读取详细描述
long_description_content_type='text/markdown', # 描述内容类型
url='https://github.com/XGenerationLab/xiyan_mcp_server', # 项目主页
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.11', # 支持的 Python 版本
)