[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "synta"
version = "0.2.6"
description = "High-performance ASN.1 parser and encoder for Python"
authors = [{name = "Synta Contributors"}]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"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 :: Rust",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["asn1", "der", "ber", "encoding", "parser", "x509", "certificate"]
[project.urls]
Homepage = "https://codeberg.org/abbra/synta"
Repository = "https://codeberg.org/abbra/synta"
[tool.maturin]
manifest-path = "synta-python/Cargo.toml"
module-name = "synta._synta"
bindings = "pyo3"
python-source = "python"
features = ["openssl", "deprecated-pkcs12-algorithms"]
[dependency-groups]
dev = ["pytest>=7"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]