MVP готов
This commit is contained in:
Mikan
2025-12-08 17:48:35 +03:00
parent 5b08f6792a
commit bba1e8ca7e
8 changed files with 242 additions and 16 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "md-to-docx"
version = "0.1.0"
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"