[project]
name = "survey-insight"
version = "0.3.1"
description = "Survey Insight Generator - MCP Server for analyzing survey comments with beautiful interactive dashboards"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Survey Insight Team" }
]
license = { text = "MIT" }
dependencies = [
"mcp>=0.9.0",
"pandas>=2.0.0",
"numpy>=1.24.0",
"janome>=0.5.0",
"spacy>=3.7.0",
"en-core-web-sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.8.0/en_core_web_sm-3.8.0-py3-none-any.whl",
"langdetect>=1.0.9",
"wordcloud>=1.9.0",
"plotly>=5.18.0",
"matplotlib>=3.7.0",
"Pillow>=10.0.0",
"Jinja2>=3.1.0",
"anthropic>=0.39.0",
"google-generativeai>=0.8.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-mock>=3.11.0",
"ruff>=0.1.0",
]
[project.scripts]
survey-insight-mcp = "survey_insight.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.ruff]
line-length = 127
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = []
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"