File size: 1,148 Bytes
6f718f1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
56
57
58
[project]
name = "gaia-agent-final"
version = "0.1.0"
description = "Tool-using agent for the Hugging Face Agents Course GAIA assignment"
requires-python = ">=3.11"
dependencies = [
  "beautifulsoup4>=4.13.0",
  "ddgs>=9.5.0",
  "faster-whisper>=1.1.0",
  "gradio[oauth]==5.25.2",
  "httpx>=0.28.0",
  "openpyxl>=3.1.5",
  "pandas>=2.2.0",
  "pydantic>=2.10.0",
  "pypdf>=5.0.0",
  "smolagents[litellm]>=1.22.0",
  "yt-dlp>=2025.6.0",
]

[project.optional-dependencies]
dev = [
  "mypy>=1.15.0",
  "pandas-stubs>=2.2.0",
  "pytest>=8.3.0",
  "pytest-cov>=6.0.0",
  "ruff>=0.11.0",
  "types-yt-dlp>=2025.0.0",
]

[project.scripts]
gaia-agent = "gaia_agent.cli:main"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["src/gaia_agent"]

[tool.ruff]
line-length = 100
target-version = "py311"

[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]

[tool.mypy]
python_version = "3.12"
strict = true
packages = ["gaia_agent"]

[[tool.mypy.overrides]]
module = ["faster_whisper.*", "smolagents.*"]
ignore_missing_imports = true

[tool.pytest.ini_options]
testpaths = ["tests"]