-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
43 lines (39 loc) · 1.25 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
[tool.poetry]
name = "piicatcher_spacy"
version = "0.1.2"
description = "PIICatcher plugin that uses spacy to detect PII"
authors = ["Tokern <[email protected]>"]
license = "MIT License"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords=["pii","postgres","snowflake","redshift","athena"]
readme="README.md"
homepage="https://tokern.io/"
repository="https://github.com/tokern/piicatcher_spacy/"
[tool.poetry.dependencies]
python = ">=3.8,<=3.10.8"
spacy = "^3.4.4"
piicatcher = "^0.20.2"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-cov = "*"
black = "^21.12b0"
mypy = "^0.910"
flake8 = "^4.0.1"
isort = "^5.10.1"
pre-commit = "^2.16.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."piicatcher_detectors"]
spacy = "piicatcher_spacy.detectors:SpacyDetector"