-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (55 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
59 lines (55 loc) · 1.14 KB
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
[tool.poetry]
name = "semantic_classification"
version = "0.1.0"
description = "Решение весеннего хакатона - 2024."
authors = [
"Donskoi Andrei <donskoi.ae@gmail.com>",
"Artem Medvedev <artiebears@mail.ru>",
"Ali Ramazanov <ali_ramazanov_2000@mail.ru>",
"Ivan Butakov <vanessbut@yandex.ru>",
"Timofei Schcudro <t.shshudro@alumni.nsu.ru>",
]
packages = [
{ include = "semantic/backend", from = "." },
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.26.4"
scikit-learn = "^1.3.2"
matplotlib = "^3.8.2"
tqdm = "^4.66.1"
torch = "^2.1.1"
transformers = "^4.35.2"
fastapi = "^0.110.1"
uvicorn = "^0.29.0"
natasha = "^1.6.0"
python-multipart = "^0.0.9"
striprtf = "^0.0.26"
pypdf2 = "^3.0.1"
pandas = "^2.2.2"
docx2txt = "^0.8"
openpyxl = "^3.1.2"
aiofiles = "^23.2.1"
[tool.poetry.dev-dependencies]
pytest = "^8.1.1"
pylint = "^3.1.0"
flake8 = "^7.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 80
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
)/
'''