24 lines
470 B
TOML
24 lines
470 B
TOML
[project]
|
|
name = "zig-fetch-py"
|
|
version = "0.1.0"
|
|
description = "A tool to parse Zig Object Notation (ZON) files and convert them to JSON"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"click>=8.1.8",
|
|
"loguru>=0.7.3",
|
|
]
|
|
|
|
[project.scripts]
|
|
zon2json = "zig_fetch_py.main:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["zig_fetch_py"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|