-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 953 Bytes
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 953 Bytes
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
[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",
"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",
]
[project.scripts]
horizon = "src.main:main"
horizon-mcp = "src.mcp.server:main"
horizon-wizard = "src.setup.wizard: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"]