[build-system]
requires = ["maturin>=1.8,<2.0"]
build-backend = "maturin"
[project]
name = "dynojson"
version = "0.1.0"
description = "Marshall/unmarshall JSON to/from DynamoDB JSON format — fast Python library backed by Rust"
authors = [{ name = "cykruss" }]
license = { text = "MIT" }
readme = "README.md"
keywords = ["dynamodb", "json", "marshall", "unmarshall", "aws"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Rust",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Typing :: Typed",
]
requires-python = ">=3.10"
[project.scripts]
dynojson = "dynojson.cli:main"
[project.urls]
Homepage = "https://github.com/cykruss/dynojson"
Repository = "https://github.com/cykruss/dynojson"
Issues = "https://github.com/cykruss/dynojson/issues"
Changelog = "https://github.com/cykruss/dynojson/releases"
[tool.maturin]
python-source = "python"
features = ["python"]
module-name = "dynojson._dynojson"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]