[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "rumdl"
dynamic = ["version"]
description = "A fast Markdown linter written in Rust"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
authors = [
{ name = "Ruben J. Jongejan", email = "ruben.jongejan@gmail.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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 :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Text Processing :: Markup :: Markdown",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/rvben/rumdl"
Repository = "https://github.com/rvben/rumdl.git"
[tool.maturin]
bindings = "bin"
manifest-path = "Cargo.toml"
python-packages = ["rumdl"]
strip = true
[tool.black]
line-length = 88
target-version = ["py37"]
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.7"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[dependency-groups]
dev = [
"pre-commit>=2.21.0",
]