Commit
·
20b655f
1
Parent(s):
5fcccbe
Updated version numbers, gradio package version.
Browse files- DocRedactApp.spec +2 -2
- README.md +1 -1
- pyproject.toml +2 -2
- requirements.txt +1 -1
DocRedactApp.spec
CHANGED
@@ -43,7 +43,7 @@ exe = EXE(
|
|
43 |
a.scripts,
|
44 |
[],
|
45 |
exclude_binaries=True,
|
46 |
-
name='
|
47 |
debug=False,
|
48 |
bootloader_ignore_signals=False,
|
49 |
strip=False,
|
@@ -62,5 +62,5 @@ coll = COLLECT(
|
|
62 |
strip=False,
|
63 |
upx=True,
|
64 |
upx_exclude=[],
|
65 |
-
name='
|
66 |
)
|
|
|
43 |
a.scripts,
|
44 |
[],
|
45 |
exclude_binaries=True,
|
46 |
+
name='DocRedactApp',
|
47 |
debug=False,
|
48 |
bootloader_ignore_signals=False,
|
49 |
strip=False,
|
|
|
62 |
strip=False,
|
63 |
upx=True,
|
64 |
upx_exclude=[],
|
65 |
+
name='DocRedactApp',
|
66 |
)
|
README.md
CHANGED
@@ -10,7 +10,7 @@ license: agpl-3.0
|
|
10 |
---
|
11 |
# Document redaction
|
12 |
|
13 |
-
version: 0.6.
|
14 |
|
15 |
Redact personally identifiable information (PII) from documents (pdf, images), open text, or tabular data (xlsx/csv/parquet). Please see the [User Guide](#user-guide) for a walkthrough on how to use the app. Below is a very brief overview.
|
16 |
|
|
|
10 |
---
|
11 |
# Document redaction
|
12 |
|
13 |
+
version: 0.6.6
|
14 |
|
15 |
Redact personally identifiable information (PII) from documents (pdf, images), open text, or tabular data (xlsx/csv/parquet). Please see the [User Guide](#user-guide) for a walkthrough on how to use the app. Below is a very brief overview.
|
16 |
|
pyproject.toml
CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4 |
|
5 |
[project]
|
6 |
name = "doc_redaction"
|
7 |
-
version = "0.6.
|
8 |
description = "Redact PDF/image-based documents, or CSV/XLSX files using a Gradio-based GUI interface"
|
9 |
readme = "README.md"
|
10 |
requires-python = ">=3.10"
|
@@ -23,7 +23,7 @@ dependencies = [
|
|
23 |
"spacy==3.8.4",
|
24 |
# Direct URL dependency for spacy model
|
25 |
"en_core_web_lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.8.0/en_core_web_lg-3.8.0.tar.gz",
|
26 |
-
"gradio==5.29.
|
27 |
"boto3==1.38.4",
|
28 |
"pyarrow==19.0.1",
|
29 |
"openpyxl==3.1.5",
|
|
|
4 |
|
5 |
[project]
|
6 |
name = "doc_redaction"
|
7 |
+
version = "0.6.6"
|
8 |
description = "Redact PDF/image-based documents, or CSV/XLSX files using a Gradio-based GUI interface"
|
9 |
readme = "README.md"
|
10 |
requires-python = ">=3.10"
|
|
|
23 |
"spacy==3.8.4",
|
24 |
# Direct URL dependency for spacy model
|
25 |
"en_core_web_lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.8.0/en_core_web_lg-3.8.0.tar.gz",
|
26 |
+
"gradio==5.29.1",
|
27 |
"boto3==1.38.4",
|
28 |
"pyarrow==19.0.1",
|
29 |
"openpyxl==3.1.5",
|
requirements.txt
CHANGED
@@ -10,7 +10,7 @@ pandas==2.2.3
|
|
10 |
scikit-learn==1.6.1
|
11 |
spacy==3.8.4
|
12 |
en_core_web_lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.8.0/en_core_web_lg-3.8.0.tar.gz
|
13 |
-
gradio==5.29.
|
14 |
boto3==1.38.4
|
15 |
pyarrow==19.0.1
|
16 |
openpyxl==3.1.5
|
|
|
10 |
scikit-learn==1.6.1
|
11 |
spacy==3.8.4
|
12 |
en_core_web_lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.8.0/en_core_web_lg-3.8.0.tar.gz
|
13 |
+
gradio==5.29.1
|
14 |
boto3==1.38.4
|
15 |
pyarrow==19.0.1
|
16 |
openpyxl==3.1.5
|