Files
md-to-docx/pyproject.toml

22 lines
559 B
TOML
Raw Permalink Normal View History

2025-12-08 17:48:35 +03:00
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "md-to-docx"
2025-12-09 23:50:02 +03:00
version = "0.1.1"
2025-12-08 17:48:35 +03:00
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"