-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 804 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 804 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
[project]
name = "swe-article-extraction-benchmark"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"beautifulsoup4>=4.14.3",
"httpx>=0.28.1",
"json-arrays>=0.15.0",
"nltk>=3.9.3",
"orjson>=3.11.7",
"rapidfuzz>=3.14.3",
"resiliparse>=0.16.0",
"rouge-score>=0.1.2",
"running-stats>=0.2.0",
"trafilatura>=2.0.0",
]
[project.scripts]
prepare-raw-html = "prepare_raw_html.main:main"
swe-article-bench = "swe_article_extraction_benchmark.main:main"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.15.7",
"ty>=0.0.24",
]
[build-system]
requires = ["uv_build>=0.10,<0.11.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "swe_article_extraction_benchmark"