-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.06 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 = ["uv_build>=0.8.5,<0.9.0"]
build-backend = "uv_build"
[project]
name = "zotero-arxiv-daily"
version = "1.0.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"gitignore-parser>=0.1.11",
"tiktoken>=0.8.0",
"feedparser>=6.0.11",
"hydra-core>=1.3.2",
"aiosmtpd>=1.4.6",
"loguru>=0.7.3",
"pyzotero>=1.10.0",
"scikit-learn>=1.7.1",
"sentence-transformers>=5.2.3",
"torch",
"openai>=2.24.0",
"arxiv>=2.4.0",
"pymupdf4llm>=0.3.4",
"pymupdf-layout>=1.27.1",
"dotenv>=0.9.9",
"peft>=0.18.1",
"trafilatura>=2.0.0",
]
[tool.uv.sources]
torch = { index = "pytorch" }
[[tool.uv.index]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[tool.pytest.ini_options]
addopts = "-m 'not ci'"
markers = [
"ci: tests that only run in CI (require external services)",
]
filterwarnings = [
"ignore::DeprecationWarning:multiprocessing",
]
[dependency-groups]
dev = [
"ipykernel>=7.1.0",
"pytest>=8.4.1",
]