1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
extend-select = ["I", "TRY", "UP"]
[tool.pytest.ini_options]
addopts = "--cov=pwdlib/ --cov-report=term-missing"
[tool.hatch]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
source = "regex_commit"
commit_extra_args = ["-e"]
path = "pwdlib/__init__.py"
[tool.hatch.envs.default]
installer = "uv"
features = [
"argon2",
"bcrypt",
]
dependencies = [
"mypy",
"ruff",
"pytest",
"pytest-cov",
"mkdocs-material",
"mkdocstrings[python]",
]
[tool.hatch.envs.default.scripts]
test = "pytest"
test-cov-xml = "pytest --cov-report=xml"
lint = [
"ruff format .",
"ruff check --fix .",
"mypy pwdlib/",
]
lint-check = [
"ruff format --check .",
"ruff check .",
"mypy pwdlib/",
]
docs-serve = "mkdocs serve"
docs-build = "mkdocs build"
[build-system]
requires = ["hatchling", "hatch-regex-commit"]
build-backend = "hatchling.build"
[project]
name = "pwdlib"
authors = [
{ name = "pwdlib", email = "fvoron@gmail.com" }
]
description = "Modern password hashing for Python"
readme = "README.md"
dynamic = ["version"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.8"
dependencies = [
]
[project.optional-dependencies]
argon2 = [
"argon2-cffi >=23.1.0,<24",
]
bcrypt = [
"bcrypt >=4.1.2,<5",
]
[project.urls]
Documentation = "https://frankie567.github.io/pwdlib/"
Source = "https://github.com/frankie567/pwdlib"
|