v0.5.2
Python application / build (push) Waiting to run

Что то сделал
This commit is contained in:
Igor20264
2026-09-08 19:37:54 +03:00
parent 1a5b35eb54
commit 510f7e7adf
90 changed files with 11720 additions and 5547 deletions
+11 -3
View File
@@ -3,7 +3,7 @@ name = "md2gost"
version = "0.1.0"
description = "Markdown to DOCX (MIREA TZ / GOST 7.32)"
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"python-docx>=0.8.11,<1",
"marko>=2.0.0,<3",
@@ -16,6 +16,7 @@ dependencies = [
"lxml>=4.9,<6",
"mermaidx>=0.9.0,<1",
"playwright>=1.40.0,<2",
"data-flow-diagram>=1.16.0,<2",
]
[project.scripts]
@@ -23,6 +24,7 @@ md2gost = "md2gost.__main__:main"
md2gost-gui = "md2gost.gui:main"
md2latex = "md2latex.__main__:main"
md2fodt = "md2fodt.__main__:main"
word2md = "word2md.__main__:main"
[dependency-groups]
dev = [
@@ -39,24 +41,29 @@ requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["md2gost", "md2latex", "md2fodt"]
packages = ["md2gost", "md2latex", "md2fodt", "word2md"]
[tool.hatch.build.targets.wheel.force-include]
"md2gost/Template.docx" = "md2gost/Template.docx"
"md2gost/TitleTemplate.docx" = "md2gost/TitleTemplate.docx"
"md2gost/mml2omml" = "md2gost/mml2omml"
"md2gost/diagrams" = "md2gost/diagrams"
"latex/mirea" = "latex/mirea"
"prompts/generate-md.md" = "md2gost/prompts/generate-md.md"
"prompts/generate-mirea-report.md" = "md2gost/prompts/generate-mirea-report.md"
"prompts/generate-pis-custom-report.md" = "md2gost/prompts/generate-pis-custom-report.md"
"prompts/emulate-student.md" = "md2gost/prompts/emulate-student.md"
"docs/README.md" = "md2gost/docs/README.md"
"docs/quickstart.md" = "md2gost/docs/quickstart.md"
"docs/markdown.md" = "md2gost/docs/markdown.md"
"docs/schemes.md" = "md2gost/docs/schemes.md"
"docs/archimate.md" = "md2gost/docs/archimate.md"
"docs/types.md" = "md2gost/docs/types.md"
"docs/cli-gui.md" = "md2gost/docs/cli-gui.md"
"docs/title.md" = "md2gost/docs/title.md"
"docs/styles.md" = "md2gost/docs/styles.md"
"docs/prompts.md" = "md2gost/docs/prompts.md"
"docs/word2md.md" = "md2gost/docs/word2md.md"
# Legacy Poetry metadata (optional; prefer uv + [project] above)
[tool.poetry]
@@ -67,7 +74,7 @@ authors = ["witelokk <death.thunder@yandex.ru>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
python = "^3.11"
python-docx = "^0.8.11"
marko = "^2.0.0"
docxcompose = "^1.4.0"
@@ -79,6 +86,7 @@ latex2mathml = "^3.76.0"
pygments = "^2.16.1"
mermaidx = "^0.9.0"
playwright = "^1.40.0"
data-flow-diagram = "^1.16.0"
[tool.poetry.scripts]
md2gost = "md2gost.__main__:main"