-
Notifications
You must be signed in to change notification settings - Fork 96
/
pyproject.toml
70 lines (64 loc) · 1.89 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "piicatcher"
version = "0.21.2"
description = "Find PII data in databases"
authors = ["Tokern <info@tokern.io>"]
license = "Apache 2.0"
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","bigquery"]
readme="README.md"
homepage="https://tokern.io/"
repository="https://github.com/tokern/piicatcher/"
[tool.poetry.dependencies]
python = ">=3.8,<=3.10.8"
pyyaml = "*"
click = "*"
python-json-logger = "^2.0.2"
commonregex-improved = "1.0.2"
dbcat = "0.14.2"
typer = "^0.4.0"
goog-stats = "^0.1.2"
tabulate = "^0.8.9"
sqlalchemy-bigquery = "1.6.1"
google-cloud-bigquery-storage = "2.20.0"
dataclasses = {version = ">=0.6", markers="python_version >= '3.8' and python_version <= '3.10'"}
great-expectations = {version = "^0.13.42", optional = true}
acryl-datahub = {version = "^0.8.16", optional = true}
tqdm = "^4.62.3"
catalogue = "^2.0.6"
[tool.poetry.extras]
datahub = ["acryl-datahub", "great-expectations"]
[tool.poetry.dev-dependencies]
black = "==19.10b0"
flake8 = "*"
isort = "*"
mypy = "*"
pre-commit = "*"
pytest = "*"
coverage = "*"
pytest-cov = "*"
pytest-pylint = "*"
twine = "*"
pytest-mock = "*"
types-PyMySQL = "^1.0.2"
types-python-dateutil = "^0.1.6"
types-PyYAML = "^5.4.6"
pytest-cases = "^3.6.4"
types-tabulate = "^0.8.3"
pytest-order = "^1.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
piicatcher = "piicatcher.command_line:app"