datahobbit 1.0.0

A tool that generates CSV or Parquet files with synthetic data based on a provided JSON schema
Documentation
[build-system]
requires = ["maturin>=1.6,<2.0"]
build-backend = "maturin"

[project]
name = "datahobbit"
requires-python = ">=3.9"
classifiers = [
    "Programming Language :: Rust",
    "Programming Language :: Python :: Implementation :: CPython",
    "Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = ["typer"]

[project.optional-dependencies]
dev = ["ruff"]

[project.scripts]
datahobbit = "datahobbit.app:entry_point"

[tool.ruff]
line-length = 120

[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "datahobbit.native"