-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (44 loc) · 1.16 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "deeplens-cli"
version = "0.1.12"
description = "A terminal-native, citation-grounded multi-perspective research agent."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "DeepLens contributors" }]
dependencies = [
"httpx>=0.27,<1",
"langgraph>=0.2,<1",
"pydantic>=2.7,<3",
"pydantic-settings>=2.3,<3",
"textual>=0.70,<2",
"reportlab>=4.2,<5",
"beautifulsoup4>=4.12,<5",
"PyMuPDF>=1.23.0",
"openai>=1.0.0",
"trafilatura>=1.9.0",
]
[project.optional-dependencies]
dev = ["build>=1.2", "mypy>=1.10", "pytest>=8.2", "pytest-asyncio>=0.23", "ruff>=0.5"]
[project.scripts]
deeplens = "deeplens.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/deeplens"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-m 'not integration'"
markers = ["integration: requires live configured providers"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_unused_ignores = true