mirror of
https://github.com/data-privacy-stack/presidio.git
synced 2026-07-23 11:20:55 -05:00
Copilot-Session: 2e86159d-80a9-4926-9378-c5dabe07a39f Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
59 lines
1.6 KiB
TOML
59 lines
1.6 KiB
TOML
[build-system]
|
|
build-backend = "poetry.core.masonry.api"
|
|
requires = ["poetry-core"]
|
|
|
|
[project]
|
|
name = "presidio-image-redactor"
|
|
version = "0.0.60"
|
|
description = "Presidio image redactor package"
|
|
authors = [{name = "Presidio", email = "presidio@dataprivacystack.org"}]
|
|
license = "MIT"
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
]
|
|
keywords = ["presidio_image_redactor"]
|
|
urls = {Homepage = "https://github.com/data-privacy-stack/presidio"}
|
|
readme = "README.md"
|
|
requires-python = ">=3.10,<3.15"
|
|
|
|
dependencies = [
|
|
"pillow (>=12.3.0,<13.0.0)",
|
|
"pytesseract (>=0.3.13,<0.4)",
|
|
"presidio-analyzer (>=2.2.0,<3.0.0)",
|
|
"matplotlib (>=3.6.0,<4.0.0)",
|
|
"pydicom (>=2.3.0,<4.0.0)",
|
|
"pypng (>=0.20220715.0,<1.0.0)",
|
|
"azure-ai-formrecognizer (>=3.3.3,<4.0.0)",
|
|
"opencv-python (>=4.13.0.92,<5.0.0)",
|
|
"python-gdcm (>=3.0.24.1,<4.0.0)",
|
|
"spacy (>=3.8.7,<4.0.0) ; python_version >= '3.13' and python_version < '3.14'",
|
|
"spacy (>=3.8.7,!=3.8.14,<4.0.0) ; python_version >= '3.14'"]
|
|
|
|
[project.optional-dependencies]
|
|
server = [
|
|
"flask (>=1.1,<4.0.0)",
|
|
"gunicorn (>=25.3.0,<26.0.0)"
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pip",
|
|
"ruff",
|
|
"pytest",
|
|
"pytest-cov",
|
|
"pytest-mock",
|
|
"python-dotenv",
|
|
"pre-commit",
|
|
"diff-cover",
|
|
]
|
|
|
|
[tool.coverage.run]
|
|
relative_files = true
|
|
source = ["."]
|