Skip to content

Commit 06560a2

Browse files
authored
🎉 Create pyproject.toml
1 parent 0d283c0 commit 06560a2

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

‎pyproject.toml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
[tool.poetry]
2+
name = "AraT5-MSAizer"
3+
description = "MT system for dialect-to-MSA translation"
4+
version = "0.1.0"
5+
authors = ["Murhaf Fares"]
6+
7+
[tool.poetry.dev-dependencies]
8+
pre-commit = "*"
9+
ruff = "*"
10+
11+
[tool.poetry.dependencies]
12+
python = ">=3.10,<3.11"
13+
peft = "*"
14+
numpy = "*"
15+
transformers = "*"
16+
accelerate = "*"
17+
bitsandbytes = "*"
18+
typer = "*"
19+
datasets = "*"
20+
sentencepiece = "*"
21+
evaluate = "*"
22+
scikit-learn = "*"
23+
jupyterlab = "*"
24+
huggingface_hub = "*"
25+
26+
[tool.ruff]
27+
# Enable pycodestyle ('E') and Pyflakes ('F'), pandas-vet ('PD'), isort ('I').
28+
select = ["E", "F", "PL", "PD", "ARG", "I"]
29+
line-length = 120
30+
ignore = ["PD901"]
31+
32+
[tool.ruff.isort]
33+
lines-after-imports = 2
34+
force-wrap-aliases = true
35+
combine-as-imports = true
36+
37+
[tool.ruff.pylint]
38+
max-args = 10

0 commit comments

Comments
 (0)