26 lines
484 B
TOML
26 lines
484 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["md2gost"]
|
|
|
|
[project]
|
|
name = "md2gost"
|
|
version = "0.1.0"
|
|
description = "Markdown → LaTeX конвертер по ГОСТ Р 7.0.5-2008"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"markdown-it-py[plugins]>=4.2.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
md2gost = "md2gost.main:main"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"black>=26.5.1",
|
|
"mypy>=2.3.0",
|
|
"ruff>=0.15.21",
|
|
]
|