-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
44 lines (40 loc) · 983 Bytes
/
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
[tool.poetry]
name = "bert-finetuning-catalyst"
version = "0.1.0"
description = "BERT classifier fine-tuning with PyTorch, HuggingFace, and Catalyst"
authors = ["Yury Kashnitsky <[email protected]>"]
license = "CCBY-4.0"
[tool.poetry.dependencies]
python = ">=3.8,<=3.9.9"
catalyst = "22.4"
numpy = "^1.21.5"
pandas = "^1.3.5"
PyYAML = "^5.3.1"
tensorboard = "^2.8.0"
torch = { url = "https://download.pytorch.org/whl/cu111/torch-1.9.0%2Bcu111-cp39-cp39-linux_x86_64.whl", platform = "linux" }
transformers = "^4.18.0"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
click = "^8.0.4"
flake8 = "^3.7.9"
isort = "^5.10.1"
mypy = "^0.770"
pre_commit = "^2.18.1"
pylint = "^2.12.2"
pytest = "^5.2"
pytest-cov = "^2.8.1"
pytest-html = "^2.1.0"
[tool.black]
line-length = 119
target-version = ['py38', 'py39']
include = '\.pyi?$'
exclude = '''
/(
| \.git
| \.tox
| \*venv
)/
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"