Initial version with only pbkdf2-sha256 support

This commit is contained in:
2021-03-23 12:57:03 +01:00
commit 86484a091f
7 changed files with 325 additions and 0 deletions

17
pyproject.toml Normal file
View File

@@ -0,0 +1,17 @@
[tool.poetry]
name = "passlib-werkzeug"
version = "0.1.0"
description = ""
authors = ["Gergely Polonkai <gergely@polonkai.eu>"]
[tool.poetry.dependencies]
python = "^3.9"
passlib = "^1.7.4"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
Werkzeug = "^1.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"