-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.24 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
58
59
[tool.poetry]
name = "pruning-study"
version = "0.1.0"
description = ""
authors = [
"GChrysostomou <[email protected]>",
"mlsw <[email protected]>",
"casszhao <[email protected]>"
]
readme = "README.md"
packages = [{include = "pruning_study"}]
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
loguru = "^0.7.2"
torch = "^2.2.2"
nltk = "^3.8.1"
sentencepiece = "^0.2.0"
protobuf = "^5.26.1"
evaluate = "^0.4.1"
datasets = "^2.18.0"
huggingface-hub = "^0.22.2"
accelerate = "^0.29.1"
bert-score = "^0.3.13"
absl-py = "^2.1.0"
rouge-score = "^0.1.2"
pydantic = "^2.6.4"
scikit-learn = "^1.4.2"
openpyxl = "^3.1.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.5"
pytest = "^7.4.3"
black = "^23.11.0"
mypy = "^1.7.0"
pre-commit = "^3.7.0"
poetry-plugin-export = "^1.7.1"
[[tool.poetry.source]]
name = 'pypi'
priority="primary"
[[tool.poetry.source]]
name = "fpho"
url = "https://files.pythonhosted.org"
priority="supplemental"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
extend-select = ["C4", "NPY", "PD", "SIM", "TCH"]
ignore = ["E501", "PD901", "TCH002", "PD011", "TCH001"]
show-fixes = true
# change the default line length number or characters.
line-length = 150