59 lines
1.2 KiB
TOML
59 lines
1.2 KiB
TOML
[project]
|
|
name = "horizon"
|
|
version = "0.1.0"
|
|
description = "AI-driven information aggregation system for tracking academic and social trends"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"httpx>=0.27.0",
|
|
"feedparser>=6.0.11",
|
|
"anthropic>=0.39.0",
|
|
"openai>=1.54.0",
|
|
"google-genai>=0.3.0",
|
|
"pydantic>=2.9.0",
|
|
"python-dateutil>=2.9.0",
|
|
"rich>=13.9.0",
|
|
"tenacity>=9.0.0",
|
|
"python-dotenv>=1.0.0",
|
|
"ddgs>=7.0.0",
|
|
"beautifulsoup4>=4.12.0",
|
|
"markdown>=3.10.2",
|
|
"mcp>=1.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0.0",
|
|
"pytest-cov>=5.0.0",
|
|
]
|
|
openbb = [
|
|
"openbb>=4.4.0",
|
|
"openbb-benzinga>=1.6.0",
|
|
]
|
|
twitter = [
|
|
"playwright>=1.40.0",
|
|
"playwright-stealth>=1.0.0",
|
|
]
|
|
trafilatura = [
|
|
"trafilatura>=2.1.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
horizon = "src.main:main"
|
|
horizon-mcp = "src.mcp.server:main"
|
|
horizon-wizard = "src.setup.wizard:main"
|
|
horizon-webhook = "src.services.webhook_cli:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
minversion = "8.0"
|
|
addopts = "-q"
|
|
testpaths = ["tests"]
|