[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "derivepassphrase"
description = "An almost faithful Python reimplementation of James Coglan's vault."
readme = "README.md"
requires-python = ">= 3.9"
license = { text = "zlib/libpng" }
keywords = []
authors = [
{ name = "Marco Ricci", email = "software@the13thletter.info" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: zlib/libpng License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"click >= 8.1",
"typing_extensions",
'tomli; python_version < "3.11"'
]
dynamic = ['version']
[project.optional-dependencies]
dev = [
"hatch ~= 1.10",
]
export = [