31 lines
520 B
TOML
31 lines
520 B
TOML
[project]
|
|
name = "sentiment-agent"
|
|
version = "0.1.0"
|
|
description = "AI agent for gathering data and performing sentiment analysis"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"claude-agent-sdk",
|
|
"anyio",
|
|
"httpx",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest",
|
|
"ruff",
|
|
"mypy",
|
|
]
|
|
|
|
[project.scripts]
|
|
sentiment-agent = "sentiment_agent.main:main"
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.11"
|
|
ignore_missing_imports = true
|