forked from pesc101/exp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (41 loc) · 1.35 KB
/
pyproject.toml
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
[project]
name = "rag-evaluation"
version = "0.1.0"
description = "Evaluation of RAG models"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"datasets==2.16.0",
"encourage>=0.1.22",
"hydra-core>=1.3.2",
"streamlit>=1.39.0",
"vllm>=0.6.4",
"wandb>=0.18.5",
]
[project.optional-dependencies]
dev = [
"ipywidgets>=8.1.5",
"jupyterlab>=4.0",
"jupytext>=1.16.3",
"notebook>=7.0",
"matplotlib>=3.9.1",
]
[tool.ruff]
line-length = 100
lint.select = ["E", "F", "W", "I", "D", "A", "N", "B", "SIM", "C4", "TID"]
lint.ignore = [
"E741", # Ambiguous variable name
"D213", # Multi-line docstring summary should start at the second line
"D105", # Missing docstring in magic method
"D107", # Missing docstring in __init__
"D203", # 1 blank line required before class docstring
"D401", # First line should be in imperative mood; try rephrasing
"D407", # Missing dashed underline after section
"D406", # Section name should end with a newline
"D106", # Missing docstring in public nested class
"B006", # Do not use mutable data structures for argument defaults
"B008", # Do not perform function calls in argument defaults
"B905", # `zip()` without an explicit `strict=` parameter
]
[tool.uv.sources]
encourage = { git = "ssh://[email protected]/uhh-hcds/encourage.git", branch = "stage" }