-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.21 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
[tool.poetry]
name = "text-rgnn-new"
version = "0.1.0"
description = ""
authors = ["Arda Can Aras <ardaaras99@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<3.9"
transformers = "4.18.0"
jupyter = "^1.0.0"
numpy = "^1.19.2"
scikit-learn = "^1.2.0"
pandas = "^1.5.2"
scipy = "^1.10.0"
torch = "2.0.0"
gensim = "^4.3.2"
torch-geometric = "^2.3.1"
wandb = "^0.15.12"
nltk = "^3.8.1"
openpyxl = "^3.1.2"
pytest = "^8.0.0"
datasets = "^2.17.0"
baseline-text-graphs = { git = "https://github.com/ardaaras99/baseline-text-graphs.git", rev = "main" }
finetuning-encoders = { git = "https://github.com/ardaaras99/finetuning-encoders.git", rev = "main" }
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.26.0"
ruff = "^0.1.9"
[tool.ruff]
line-length = 250
[tool.ruff.format]
# Like Black
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.ruff.lint]
extend-select = [
"A", # flake8-builtins
"B", # flake8-bugbear
"S", # flake8-bandit
"I", # isort
"UP", # pyupgrade
]
[tool.ruff.lint.extend-per-file-ignores]
"*" = ["S101", "S301", "S311"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"