28 lines
471 B
TOML
28 lines
471 B
TOML
[project]
|
|
name = "kion-vault"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
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?$'
|
|
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.8.14,<0.9.0"]
|
|
build-backend = "uv_build"
|