forked from neorusa/profanity-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.28 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
[tool.poetry]
name = "profanity-filter2"
version = "1.4.3"
description = "A Python library for detecting and filtering profanity"
authors = ["Roman Inflianskas <infroma@gmail.com>"]
maintainers = ["Ruslan Gareev <mail@ruslangareev.ru>"]
license = "GPL-3.0+"
readme = "README.md"
repository = "https://github.com/neorusa/profanity-filter"
keywords = ["library", "profanity", "filter", "censor"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Natural Language :: Russian",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Linguistic",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
spacy = "^3"
ordered-set = "^3.0"
cached-property = "^1.5"
dataclasses = { version = "^0.6.0", python = "~3.6" }
poetry-version = "^0.1.3"
more-itertools = "^8.0"
pydantic = "^1.3"
"ruamel.yaml" = "^0.15.89"
numpy = "^1.20"
[tool.poetry.group.dev.dependencies]
pytest = "^3.8"
dill = "^0.3.4"
ordered-set-stubs = "^0.1.3"
[tool.poetry.group.web.dependencies]
appdirs = "^1.4.4"
fastapi = {extras = ["all"], version = "^0.87.0"}
[tool.poetry.scripts]
profanity_filter = 'profanity_filter.console:main'