sentiment-analysis-mcp / pyproject.toml
vandenn's picture
Simplify requirements.txt to high level
c662080
raw
history blame contribute delete
485 Bytes
[project]
name = "sentiment-analysis-mcp"
version = "0.1.0"
description = "E2E Sentiment Analysis MCP implementation"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"dotenv>=0.9.9",
"gradio[mcp]>=5.49.1",
"pandas>=2.3.0",
"pydantic-settings>=2.9.1",
"requests>=2.32.5",
"textblob>=0.19.0",
]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E203", "E501"]
[dependency-groups]
dev = [
"ruff>=0.11.13",
]