feat: pdf2cad

This commit is contained in:
2026-03-03 21:24:02 +00:00
commit 112213da6e
61 changed files with 7290 additions and 0 deletions

37
pyproject.toml Normal file
View File

@@ -0,0 +1,37 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pdf2imos"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"pymupdf>=1.24",
"ezdxf>=0.18",
"typer>=0.9",
"jsonschema>=4.20",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov",
"ruff",
]
[project.scripts]
pdf2imos = "pdf2imos.__main__:app"
[tool.hatch.build.targets.wheel]
packages = ["src/pdf2imos"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I"]