forked from vzhou842/profanity-check
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (33 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bleepy-profanity-check"
version = "0.1.9"
authors = [
{ name="Victor Zhou (original author), Menelaos Kotoglou, Dimitrios Mistriotis, and Reyniel Mark Escamillas", email="[email protected]" },
]
description = 'A fast, robust library to check for offensive language in strings. This version of "profanity-check" is used by Bleepy. '
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"scikit-learn==1.1.3", "joblib>=1.2.0"
]
[project.optional-dependencies]
tests = [
"pytest>=7.2.0",
"pylint>=2.15.6",
"flake8>=5.0.4"
]
[project.urls]
"Homepage" = "https://github.com/reyniel26/bleepy-profanity-check"
"Bug Tracker" = "https://github.com/reyniel26/bleepy-profanity-check/issues"
# py -m pip install --upgrade build
# py -m build