-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
50 lines (45 loc) · 1.14 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
[tool.poetry]
name = "grouphug"
version = "0.8.0"
description = "GroupHug is a library with extensions to 🤗 transformers for multitask language modelling."
authors = ["Sander Land"]
license = "Apache2"
readme = "README.md"
homepage = "https://github.com/sanderland/grouphug"
keywords = ["transformers","language modelling","machine learning","classification"]
[tool.isort]
profile = "black"
line_length = 120
[tool.black]
line-length = 120
target_version = ['py38']
include = '\.py$'
[tool.poetry.dependencies]
python = "^3.8,<4.0"
transformers = "^4.20.0"
datasets = "^2.0.0"
evaluate = "^0.3.0"
torch = "^1.10.0"
numpy = "^1.21"
regex = "^2022.3.15"
Unidecode = "^1.3.4"
sentencepiece = "^0.1.96"
demoji = "^1.1.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
pytest-subtests = "^0.7.0"
jupyterlab = "^3.3.2"
jupyterlab-code-formatter = "^1.4.10"
isort = "^5.10.1"
black = "^22.3.0"
ipywidgets = "^7.6.3"
pre-commit = "^2.13.0"
matplotlib = "^3.4.2"
Werkzeug = "<2.1"
scikit-learn = "^1.0.2"
Sphinx = "^5.0.1"
sphinx-rtd-theme = "^1.0.0"
pytest-pycharm = "^0.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"