[build-system]
requires = [
"maturin>=1.0,<2.0",
"patchelf>=0.17.0; platform_system == 'Linux'"
]
build-backend = "maturin"
[project]
name = "json-tools-rs"
description = "High-performance JSON manipulation library with SIMD-accelerated parsing, Crossbeam parallelism, and native DataFrame/Series support"
readme = "README.md"
license = {text = "MIT OR Apache-2.0"}
authors = [
{name = "JSON Tools RS Contributors"},
]
keywords = ["json", "flatten", "manipulation", "parsing", "rust", "simd", "performance", "dataframe"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Rust",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: General",
"Topic :: Utilities",
]
requires-python = ">=3.9"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/amaye15/JSON-Tools-rs"
Repository = "https://github.com/amaye15/JSON-Tools-rs"
Documentation = "https://amaye15.github.io/JSON-Tools-rs/"
"Bug Tracker" = "https://github.com/amaye15/JSON-Tools-rs/issues"
[tool.maturin]
features = ["python"]
python-source = "python"
module-name = "json_tools_rs"
[tool.pytest.ini_options]
testpaths = ["python/tests"]
python_files = ["test_*.py", "*_test.py", "tests.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = ["tests.*", "*.tests.*", "examples.*", "*.examples.*", "python.examples.*", "python.tests.*"]
disallow_untyped_defs = false
check_untyped_defs = false