| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- [project]
- name = "helloagents-deep-researcher"
- version = "0.0.1"
- description = "Fully local web research and summarization assistant powered by HelloAgents."
- authors = [
- { name = "Lance Martin" }
- ]
- readme = "README.md"
- license = { text = "MIT" }
- requires-python = ">=3.10"
- dependencies = [
- "fastapi>=0.115.0",
- "hello-agents>=0.2.4",
- "tavily-python>=0.5.0",
- "httpx>=0.28.1",
- "markdownify>=0.11.0",
- "python-dotenv==1.0.1",
- "requests>=2.31.0",
- "langsmith>=0.1.38",
- "openai>=1.12.0",
- "uvicorn[standard]>=0.32.0",
- "huggingface-hub>=0.35.3",
- "langchain-community>=0.4",
- "ddgs>=9.6.1",
- "loguru>=0.7.3",
- ]
- [project.optional-dependencies]
- dev = ["mypy>=1.11.1", "ruff>=0.6.1"]
- [build-system]
- requires = ["setuptools>=73.0.0", "wheel"]
- build-backend = "setuptools.build_meta"
- [tool.setuptools]
- packages = ["deep_researcher"]
- [tool.setuptools.package-dir]
- "deep_researcher" = "src/deep_researcher"
- [tool.setuptools.package-data]
- "*" = ["py.typed"]
- [tool.ruff]
- lint.select = [
- "E", # pycodestyle
- "F", # pyflakes
- "I", # isort
- "D", # pydocstyle
- "D401", # First line should be in imperative mood
- "T201",
- "UP",
- ]
- lint.ignore = [
- "UP006",
- "UP007",
- "UP035",
- "D417",
- "E501",
- ]
- [tool.ruff.lint.per-file-ignores]
- "tests/*" = ["D", "UP"]
- [tool.ruff.lint.pydocstyle]
- convention = "google"
- [dependency-groups]
- dev = [
- "ruff>=0.12.7",
- ]
|