2025-06-09 19:52:23 +09:00

32 lines
808 B
TOML

[project]
name = "sphinxcontrib-mdxbuilder"
description = "Sphinx extension tobuild MDX files"
authors = [
{name = "Pedram Navid", email = "pedram@dagsterlabs.com"}
]
requires-python = ">=3.10"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
]
version = "0.1.3"
dependencies = [
"sphinx>=7.0",
]
[project.scripts]
sphinx-builder-mdx = "sphinxcontrib.mdxbuilder.__main__:main"
[project.optional-dependencies]
test = ["pytest", "tox", "tox-uv", "ruff"]