22 lines
559 B
TOML
22 lines
559 B
TOML
|
|
[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"
|