Files
vault/pyproject.toml

28 lines
471 B
TOML
Raw Permalink Normal View History

2025-10-08 05:08:23 +00:00
[project]
name = "kion-vault"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
2025-10-08 11:31:25 +00:00
dependencies = [
"hkdf>=0.0.3",
"pycryptodome>=3.23.0",
"pyjwt[crypto]>=2.10.1",
"requests>=2.32.5",
]
[dependency-groups]
dev = [
"black>=25.9.0",
]
[tool.black]
line-length = 130
target-version = ['py313']
include = '\.pyi?$'
2025-10-08 05:08:23 +00:00
[build-system]
requires = ["uv_build>=0.8.14,<0.9.0"]
build-backend = "uv_build"