39 lines
775 B
TOML
39 lines
775 B
TOML
|
|
[project]
|
||
|
|
name = "cad-documenter"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Video walkthrough → Complete engineering documentation"
|
||
|
|
readme = "README.md"
|
||
|
|
requires-python = ">=3.12"
|
||
|
|
license = {text = "MIT"}
|
||
|
|
authors = [
|
||
|
|
{name = "Antoine Letarte", email = "antoine.letarte@gmail.com"},
|
||
|
|
]
|
||
|
|
dependencies = [
|
||
|
|
"click>=8.1.0",
|
||
|
|
"rich>=13.0.0",
|
||
|
|
"pydantic>=2.0.0",
|
||
|
|
"jinja2>=3.1.0",
|
||
|
|
"openai-whisper>=20231117",
|
||
|
|
"pillow>=10.0.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = [
|
||
|
|
"pytest>=8.0.0",
|
||
|
|
"ruff>=0.1.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
cad-doc = "cad_documenter.cli:main"
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[tool.hatch.build.targets.wheel]
|
||
|
|
packages = ["src/cad_documenter"]
|
||
|
|
|
||
|
|
[tool.ruff]
|
||
|
|
line-length = 100
|
||
|
|
target-version = "py312"
|