-
Notifications
You must be signed in to change notification settings - Fork 914
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (50 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[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",
]
[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"]