mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 06:22:03 -08:00
25 lines
558 B
TOML
25 lines
558 B
TOML
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
name = "jsonvv"
|
|
version = "0.2.2"
|
|
description = "JSON value validator"
|
|
authors = ["daijro <daijro.dev@gmail.com>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/daijro/camoufox"
|
|
homepage = "https://github.com/daijro/camoufox/tree/main/pythonlib/jsonvv"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"json",
|
|
"validator",
|
|
"validation",
|
|
"typing",
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
|
|
[tool.poetry.scripts]
|
|
jsonvv = "jsonvv.__main__:main"
|