TutorX-MCP / pyproject.toml
Meet Patel
Added external tool integration,also with test files and documentation
411f252
raw
history blame
441 Bytes
[project]
name = "tutorx-mcp"
version = "0.1.0"
description = "Educational AI Tutor MCP Server"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mcp[cli]>=1.9.3",
"gradio>=4.19.0",
"numpy>=1.24.0",
"pillow>=10.0.0",
"requests>=2.31.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"