Spaces:
Build error
Build error
File size: 1,298 Bytes
ecb541e |
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 59 |
[project]
name = "agent-course-unit4"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = "==3.12.*"
dependencies = [
"beautifulsoup4>=4.13.4",
"gradio>=5.29.0",
"litellm==1.67.2",
"openpyxl>=3.1.5",
"smolagents[mcp,openai,telemetry]>=1.14.0",
"tabulate>=0.9.0",
"uv>=0.6.17",
"wikipedia>=1.4.0",
"wikipedia-api>=0.8.1",
]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"ipywidgets>=8.1.6",
"mypy>=1.15.0",
"ruff>=0.11.7",
"python-dotenv>=1.1.0",
"types-requests>=2.32.0.20250328",
]
[tool.ruff]
line-length = 250
target-version = "py312"
[tool.mypy]
check_untyped_defs = true
disallow_any_decorated = false
disallow_any_generics = false
disallow_any_unimported = false
disallow_incomplete_defs = true
disallow_untyped_defs = true
disallow_subclassing_any = false
disallow_untyped_calls = false
disallow_untyped_decorators = false
ignore_errors = false
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
strict_optional = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_no_return = true
warn_unused_ignores = true
color_output = true
pretty = true
exclude = "app.py"
|