Files
2026-07-29 11:03:21 +03:30

43 lines
1.1 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mkdocs-schematic-footprint-viewer"
version = "0.1.1"
description = "Zensical/Python-Markdown extension that renders schematic footprint viewer shortcodes."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "Nearology" }
]
keywords = ["mkdocs", "zensical", "schematic", "footprint", "viewer"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
"Topic :: Documentation",
]
dependencies = [
"Markdown>=3.3.6",
]
[project.optional-dependencies]
test = [
"pytest>=7.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/schematic_footprint_viewer"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]