-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (53 loc) · 1.02 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
60
61
[project]
name = "BART"
requires-python = ">=3.11"
[tool.poetry]
name = "-bart"
version = "0.1.0"
description = "Summarizing chat using BART model."
authors = ["SwiftyJunnos <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
torch = "2.3.0"
tqdm = "^4.66.4"
transformers = "^4.40.2"
pydantic = "^2.7.1"
pyarrow = "^16.0.0"
pandas = "^2.2.2"
evaluate = "^0.4.2"
datasets = "^2.19.1"
orjson = "^3.10.3"
absl-py = "^2.1.0"
rouge-score = "^0.1.2"
nltk = "^3.8.1"
accelerate = "^0.30.1"
python-telegram-bot = "^21.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = [
# Use `X | Y` for type annotations
"UP007"
]
[tool.ruff.format]
quote-style = "double"
docstring-code-format = false
[tool.ruff.lint.isort]
known-first-party = ["BART"]