-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (41 loc) · 1.09 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
[project]
name = "last-translation-benchmark"
version = "0.0.1"
description = "A platform for collecting difficult-to-translate inputs."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
authors = [{ name = "Vilém Zouhar", email = "vilem.zouhar@gmail.com" }]
keywords = [
"translation",
"benchmark",
"annotation",
"human evaluation",
]
dependencies = [
"fastapi >= 0.110",
"uvicorn >= 0.29",
"httpx >= 0.27",
"deep-translator >= 1.11",
"aiosqlite >= 0.20",
"lara-sdk >= 1.8",
"cohere >= 5.11",
"openrouter >= 1.1",
]
[project.optional-dependencies]
dev = [
"pytest >= 8.4",
"pre-commit >= 4.6",
"ruff >= 0.16",
"lingtypology >= 0.8",
]
[project.urls]
Repository = "https://github.com/zouharvi/last-translation-benchmark"
Issues = "https://github.com/zouharvi/last-translation-benchmark/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { last_translation_benchmark = "server" }
packages = ["last_translation_benchmark"]
# pip install -e .