21 lines
418 B
TOML
21 lines
418 B
TOML
[project]
|
|
name = "xml_schema_validator"
|
|
version = "0.1.0"
|
|
description = "XML Schema validation library"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"maturin>=1.0,<2.0",
|
|
]
|
|
optional-dependencies.dev = [
|
|
"pytest>=8",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["maturin>=1.0,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[tool.maturin]
|
|
python-source = "python"
|
|
module-name = "xml_schema_validator._rs"
|
|
features = ["pyo3/extension-module"]
|