-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.11 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "url2ref"
version = "0.1.0"
description = "Reference extraction agent for analyzing Deepsearch results"
authors = [{name = "Research Team"}]
requires-python = ">=3.9"
dependencies = [
"requests>=2.28.0",
"python-dotenv>=1.0.0",
"litellm>=1.79.1",
"metapub>=0.5.5",
"pyyaml>=6.0.3",
"beautifulsoup4>=4.12.0",
"pypdf>=3.17.0",
"lxml>=4.9.0",
"matplotlib>=3.5.0",
]
[dependency-groups]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
"pre-commit>=4.3.0",
"types-requests>=2.31.0",
"citeproc-py>=0.9.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra -q --strict-markers --cov=lit_agent --cov-report=term-missing"
markers = [
"unit: fast, isolated tests",
"integration: tests that hit real services or I/O"
]
filterwarnings = [
"ignore:invalid escape sequence.*docopt.*:SyntaxWarning",
]
[tool.coverage.run]
branch = true
source = ["src/lit_agent"]
[tool.coverage.report]
skip_empty = true