-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·48 lines (41 loc) · 1.1 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
[tool.poetry]
name = "bunruija"
version = "0.2.0"
description = "A text classification toolkit"
authors = ["Takuya Makino <[email protected]>"]
homepage = "https://github.com/tma15"
repository = "https://github.com/tma15/bunruija"
readme = "README.md"
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
Cython = "^3.0.8"
lightgbm = "^4.2.0"
torch = "^2.1.2"
transformers = "^4.38.1"
unidic-lite = "^1.0.8"
mmh3 = "^3.0.0"
fugashi = "^1.1.1"
ipadic = "^1.0.0"
scikit-learn = "^1.0.2"
scipy = "^1.8.0"
hydra-core = "^1.2.0"
loguru = "^0.7.2"
datasets = "^2.16.0"
ruamel-yaml = "^0.18.5"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
[tool.poetry.scripts]
bunruija-gen-yaml = 'bunruija.gen_yaml:cli_main'
bunruija-evaluate = 'bunruija.evaluate:cli_main'
bunruija-predict = 'bunruija.predict:cli_main'
bunruija-train = 'bunruija.train:cli_main'
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.0"
[tool.black]
line-length = 88
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools", "cython"]
build-backend = "poetry.core.masonry.api"