-
Notifications
You must be signed in to change notification settings - Fork 79
/
pyproject.toml
42 lines (38 loc) · 1.15 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
[tool.poetry]
authors = ["Johannes Filter <[email protected]>"]
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
]
description = "Functions to preprocess and normalize text."
keywords = ["natural-language-processing", "text-cleaning", "text-preprocessing", "text-normalization", "user-generated-content"]
license = "Apache-2.0"
name = "clean-text"
packages = [
{include = "cleantext"},
]
readme = "README.md"
version = "0.6.0"
[tool.poetry.dependencies]
emoji = "^1.0.0"
ftfy = {version = "^6.0"}
pandas = {version = "^1.0.0", optional = true}
python = ">=3.7"
scikit-learn = {version = "^1.0.0", optional = true}
unidecode = {version = "^1.1.1", optional = true}
[tool.poetry.dev-dependencies]
black = {version = "*", allow-prereleases = true}
pandas = "*"
pylint = "*"
pytest = "*"
scikit-learn = "*"
unidecode = "*"
[tool.poetry.extras]
gpl = ["unidecode"]
sklearn = ["pandas", "scikit-learn"]
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]