-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (62 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
65 lines (62 loc) · 1.21 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
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "subtokentest"
version = "0.1.0"
description = "Unified benchmark runner and tasks for SubTokenTest benchmark"
requires-python = ">=3.10"
dependencies = [
"accelerate>=0.25.0",
"aiohttp>=3.8.0",
"anthropic>=0.18.0",
"bitsandbytes>=0.41.0",
"colorama>=0.4.6",
"datasets>=2.12.0",
"json5>=0.9.0",
"matplotlib>=3.7.0",
"numpy>=1.24.0",
"openai>=1.0.0",
"pandas>=2.0.0",
"protobuf>=3.20.0",
"pyyaml>=6.0",
"python-dotenv>=1.0.0",
"python-Levenshtein>=0.20.0",
"rapidfuzz>=3.0.0",
"regex>=2023.0.0",
"requests>=2.31.0",
"scikit-learn>=1.3.0",
"scipy>=1.10.0",
"seaborn>=0.12.0",
"sentencepiece>=0.1.99",
"tqdm>=4.65.0",
"torch>=2.0.0",
"transformers>=4.36.0",
"vllm>=0.4.0",
]
[project.optional-dependencies]
dev = [
"black>=23.7.0",
"flake8>=6.0.0",
"mypy>=1.5.0",
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
]
docs = [
"sphinx>=7.1.0",
"sphinx-rtd-theme>=1.3.0",
]
[dependency-groups]
default = []
dev = [
"black>=23.7.0",
"flake8>=6.0.0",
"mypy>=1.5.0",
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
]
docs = [
"sphinx>=7.1.0",
"sphinx-rtd-theme>=1.3.0",
]
[tool.uv]
default-groups = ["default"]