Files
md-to-docx/pyproject.toml
2025-12-09 23:50:02 +03:00

22 lines
559 B
TOML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "md-to-docx"
version = "0.1.1"
description = "Конвертер Markdown в Word (.docx) с поддержкой стилей, плагинов и тем"
authors = [{name = "Mikan", email = "MikanDrawChannel@gmail.com"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"mistune>=3.0.0",
"python-docx",
"typer[all]",
"PyYAML",
"Pillow"
]
[project.scripts]
md2docx = "src.__main__:app"