mirror of
https://github.com/data-privacy-stack/presidio.git
synced 2026-07-23 11:20:55 -05:00
* Replace pycryptodome with cryptography * Update presidio-anonymizer/presidio_anonymizer/operators/aes_cipher.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Lock version, fix NOTICE * Update pyproject.toml --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
TOML
[build-system]
|
|
build-backend = "poetry.core.masonry.api"
|
|
requires = ["poetry-core"]
|
|
|
|
[tool.poetry]
|
|
name = "presidio_anonymizer"
|
|
version = "2.2.357"
|
|
description = "Presidio Anonymizer package - replaces analyzed text with desired values."
|
|
authors = ["Presidio <presidio@microsoft.com>"]
|
|
license = "MIT"
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
keywords = ["presidio_anonymizer"]
|
|
urls = {Homepage = "https://github.com/Microsoft/presidio"}
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.9,<4.0"
|
|
cryptography = "<44.1"
|
|
flask = { version = ">=1.1", optional = true }
|
|
gunicorn = {version = "*", optional = true}
|
|
|
|
[tool.poetry.extras]
|
|
server = ["flask", "gunicorn"]
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pip = "*"
|
|
ruff = "*"
|
|
pytest = "*"
|
|
pytest-mock = "*"
|
|
python-dotenv = "*"
|
|
pre_commit = "*"
|