forked from Donskoy-Andrey/Citizens_Appeals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (54 loc) · 1.13 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
[tool.poetry]
name = "project"
version = "0.1.0"
description = "Решение кейса ООО `Промобот` - `Обработка обращений граждан`."
authors = [
"Donskoi Andrei <donskoi.com@gmail.com>",
"Artem Medvedev <artiebears@mail.ru>",
"Ali Ramazanov <ali_ramazanov_2000@mail.ru>",
"Ivan Butakov <>",
"Timofei Schcudro <>",
]
packages = [
{ include = "project", from = "." },
]
[tool.poetry.dependencies]
python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
numpy = "^1.26.2"
pandas = "^2.1.3"
scikit-learn = "^1.3.2"
seaborn = "^0.13.0"
matplotlib = "^3.8.2"
tqdm = "^4.66.1"
torch = "^2.1.1"
sphinx = "^7.2.6"
transformers = "^4.35.2"
datasets = "^2.15.0"
streamlit = "1.27.2"
django = "^4.2.7"
emoji = "^2.8.0"
plotly = "^5.18.0"
datetime = "^5.3"
sentencepiece = "^0.1.99"
spacy = "^3.7.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pre-commit = "^2.19.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 80
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
)/
'''