forked from KuekHaoYang/KResearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1014 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1014 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kresearch"
version = "0.1.0"
description = "Autonomous deep research agent"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"google-genai>=1.0.0",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"rich>=13.0",
"click>=8.0",
"ddgs>=7.0",
"trafilatura>=2.0",
"httpx>=0.27",
"beautifulsoup4>=4.12",
"lxml>=5.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "ruff>=0.5", "mypy>=1.10"]
openai = ["openai>=1.0"]
custom = ["openai>=1.0"]
anthropic = ["anthropic>=0.30"]
web = ["starlette>=0.41", "uvicorn[standard]>=0.32", "aiosqlite>=0.20"]
[project.scripts]
kresearch = "kresearch.cli:main"
kresearch-web = "kresearch.web.app:main"
[tool.hatch.build.targets.wheel]
packages = ["src/kresearch"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]