-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.03 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
45
46
47
48
49
50
51
[project]
name = "dataset-viber"
version = "0.3.1"
description = "Dataset Viber is your chill repo for data collection, annotation and vibe checks."
authors = [
{name = "davidberenstein1957", email = "[email protected]"},
]
requires-python = ">=3.9,<3.13"
readme = "README.md"
license = {text = "Apache 2.0"}
dependencies = [
"gradio[oauth]>=4.38,<5",
"datasets>=2,<3",
"argilla>=2,<3",
"gradio-huggingfacehub-search>=0.0.7"
]
[project.optional-dependencies]
bulk = [
"fast-sentence-transformers[gpu]>=0.5",
"tabulate>=0.9.0",
"umap-learn>=0.5,<1",
"plotly>=5,<6",
"dash>=2.11,<3",
"dash-bootstrap-components>=1.6.0"
]
synthesizer = [
"distilabel[hf-inference-endpoints]>=1.3.2",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.ruff]
line-length = 88
[tool.black]
line-length = 88
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pre-commit>=3.8.0",
"ruff>=0.5,<1",
"pytest>=8,<9",
"black>=24,<25",
"openpyxl>=3,<4",
]