-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.01 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
52
53
54
55
56
57
[project]
name = "text2dataset"
version = "0.1.6"
description = "Easily turn large English text datasets into Japanese text datasets using open LLMs"
authors = [
{ name = "speed1313", email = "speedtry13@icloud.com" }
]
dependencies = [
"click>=8.1.7",
"vllm>=0.6.1",
"datasets>=3.0.0",
"wandb>=0.18.0",
]
readme = "README.md"
requires-python = ">= 3.12.1"
license = {file = "LICENSE"}
[project.urls]
Repository = "https://github.com/llm-jp/text2dataset"
[project.scripts]
text2dataset = "text2dataset.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"/.*",
"/docs",
"/tests",
"/results",
"/scripts",
"/img2dataset",
"/wandb",
"/*.log",
"/*.out",
"/*.sh",
"/*.jsonl",
]
[tool.rye]
managed = true
dev-dependencies = [
"openpyxl>=3.1.5",
"ruff>=0.6.4",
"mypy>=1.11.2",
"wheel>=0.44.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/text2dataset"]