-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
74 lines (69 loc) · 1.49 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
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "artificial_detection"
version = "0.1.0"
description = "Python framework for artificial text detection with NLP approaches."
authors = ["Marat Saidov <msaidov1@yandex.ru>"]
license = "MIT License"
homepage = "https://github.com/MaratSaidov/artificial-text-detection"
[tool.poetry.dependencies]
python = ">=3.7.1,<3.10"
datasets = "2.1.0"
huggingface = "0.0.1"
EasyNMT = "2.0.1"
wandb = "0.12.6"
torch = "1.10.0"
sklearn = "0.0"
transformers = "4.10.3"
numpy = "1.21.4"
requests = "2.27.1"
packaging = "21.3"
filelock = "3.4.2"
pandas = "1.1.5"
scikit-learn = "1.0.1"
dvc = {version = "2.9.3", extras = ["gdrive"]}
autoflake = "1.4"
pytorch-lightning = "1.3.5"
unbabel-comet = "1.0.0"
bert-score = "0.3.11"
plotly = "5.7.0"
lexicalrichness = "0.1.4"
[tool.poetry.dev-dependencies]
pytest = "6.2.5"
pytest-timeout = "2.0.1"
pre-commit = "2.16.0"
PyHamcrest = "2.0.3"
pytest-cov = "3.0.0"
jupyterlab = "3.2.8"
ipykernel = "6.7.0"
setuptools = "60.5.0"
[tool.black]
color = true
line-length = 120
target-version = ["py38"]
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| env
| venv
)/
'''
[tool.isort]
py_version = 38
line_length = 120
sections = ["FUTURE", "TYPING", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
profile = "black"
include_trailing_comma = true
multi_line_output = 3
indent = 4
color_output = true