mirror of
https://github.com/data-privacy-stack/presidio.git
synced 2026-07-23 11:20:55 -05:00
52 lines
1.3 KiB
TOML
52 lines
1.3 KiB
TOML
[build-system]
|
|
build-backend = "poetry.core.masonry.api"
|
|
requires = ["poetry-core"]
|
|
|
|
[project]
|
|
name = "presidio_anonymizer"
|
|
version = "2.2.362"
|
|
description = "Presidio Anonymizer package - replaces analyzed text with desired values."
|
|
authors = [{name = "Presidio", email = "presidio@microsoft.com"}]
|
|
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",
|
|
]
|
|
keywords = ["presidio_anonymizer"]
|
|
urls = {Homepage = "https://github.com/data-privacy-stack/presidio"}
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.10,<4.0"
|
|
dependencies = [
|
|
"cryptography (>=46.0.4,<47.0.0)"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
server = [
|
|
"flask (>=1.1,<4.0.0)",
|
|
"gunicorn (>=20.0.0,<26.0.0); platform_system != 'Windows'",
|
|
"waitress (>=2.0.0,<4.0.0); platform_system == 'Windows'"
|
|
]
|
|
ahds = [
|
|
"azure-identity (>=1.25.3,<2.0.0)",
|
|
"azure-health-deidentification (>=1.1.0b1,<2.0.0)"
|
|
]
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pip = "*"
|
|
ruff = "*"
|
|
pytest = "*"
|
|
pytest-cov = "*"
|
|
pytest-mock = "*"
|
|
python-dotenv = "*"
|
|
pre_commit = "*"
|
|
diff-cover = "*"
|
|
|
|
[tool.coverage.run]
|
|
relative_files = true
|
|
source = ["."]
|