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