-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.16 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
[project]
name = "kairos"
version = "0.1.0"
description = ""
authors = [{ name = "Maciej Rapacz", email = "mrapacz@agh.edu.pl" }]
requires-python = "~=3.11"
readme = "README.md"
dependencies = [
"torch==2.2.2",
"datasets>=3.0.2,<4",
"evaluate>=0.4.3,<0.5",
"transformers==4.31.0",
"levenshtein>=0.26.1,<0.27",
"loguru>=0.7.2,<0.8",
"more-itertools>=10.5.0,<11",
"neptune>=1.12.0,<2",
"tensorboard>=2.18.0,<3",
"typer>=0.12.5,<0.13",
"numpy<2",
"sentencepiece>=0.2.0,<0.3",
"sacrebleu>=2.4.3,<3",
"rouge-score>=0.1.2,<0.2",
"prettytable>=3.12.0,<4",
]
[project.scripts]
train-kairos = "kairos.main:main"
[dependency-groups]
dev = [
"pre-commit>=4.0.1,<5",
"ruff>=0.7.1,<0.8",
"mypy>=1.13.0,<2",
"pytest>=8.3.3,<9",
"ipython>=8.29.0,<9",
"jupyterlab>=4.2.5,<5",
"seaborn>=0.13.2,<0.14",
"matplotlib>=3.9.2,<4",
"ipdb>=0.13.13,<0.14",
]
[tool.hatch.build.targets.sdist]
include = ["./kairos"]
[tool.hatch.build.targets.wheel]
include = ["./kairos"]
[tool.hatch.build.targets.wheel.sources]
"./kairos" = "kairos"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"