-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 896 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 896 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
[project]
name = "llm-summarization-benchmark"
version = "0.3.7"
description = "Scientific Paper Summarization Benchmark"
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"alignscore",
"anthropic>=0.76.0",
"bert-score>=0.3.13",
"mistralai>=1.10.0",
"ollama>=0.6.1",
"openai>=2.15.0",
"pandas>=2.3.3",
"pandas-stubs~=2.3.3",
"pip>=25.2",
"plotly>=6.3.1",
"python-dotenv>=1.2.1",
"rouge-score>=0.1.2",
"sentence-transformers>=5.1.1",
"tiktoken>=0.12.0",
]
[tool.uv.sources]
alignscore = { git = "https://github.com/MNikley/AlignScore" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.hatch.build.targets.wheel]
sources = ["src"]
[tool.hatch.build]
include = ["src/**"]
exclude = ["tests", "*.tests", "*.tests.*", "tests.*"]
[project.scripts]
benchmark = "llm_summarization_benchmark.benchmark:main"