Spaces:
Running
Running
Upload 2 files
Browse files- poetry.lock +0 -0
- pyproject.toml +23 -0
poetry.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|
pyproject.toml
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "presidio-streamlit"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = ""
|
5 |
+
authors = ["Presidio"]
|
6 |
+
readme = "index.md"
|
7 |
+
|
8 |
+
[tool.poetry.dependencies]
|
9 |
+
python = "^3.10"
|
10 |
+
presidio-analyzer = {extras = ["transformers"], version = "^2.2.355"}
|
11 |
+
spacy-stanza = "^1.0.4"
|
12 |
+
presidio-anonymizer = "^2.2.355"
|
13 |
+
streamlit = "^1.39.0"
|
14 |
+
pandas = "^2.2.3"
|
15 |
+
python-dotenv = "^1.0.1"
|
16 |
+
st-annotated-text = "^4.0.1"
|
17 |
+
flair = "^0.14.0"
|
18 |
+
openai = "^1.53.0"
|
19 |
+
azure-ai-textanalytics = "^5.3.0"
|
20 |
+
|
21 |
+
[build-system]
|
22 |
+
requires = ["poetry-core"]
|
23 |
+
build-backend = "poetry.core.masonry.api"
|