-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (28 loc) · 862 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
[tool.poetry]
name = "toxicityclassifier"
version = "1.0.0"
description = "Module for determining the level of toxicity of the text"
authors = ["D1ffic00lt <[email protected]>"]
license = "MIT License"
homepage = "https://github.com/D1ffic00lt/toxicity-classification-module"
repository = "https://github.com/D1ffic00lt/toxicity-classification-module"
documentation = "https://github.com/D1ffic00lt/toxicity-classification-module/blob/main/README.md"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
[build-system]
requires = [
"poetry-core>=1.0.0",
"setuptools>=43.0.0",
"wheel",
"langdetect>=1.0.9",
"pandas>=1.4.1",
"scikit-learn>=1.0.2",
"numpy>=1.22.2",
"nltk>=3.7",
"tqdm>=4.62.3",
"pandas>=1.4.1",
"numpy>=1.22.2"
]
build-backend = "poetry.core.masonry.api"