2026-01-27 20:05:34 +00:00
|
|
|
[project]
|
|
|
|
|
name = "cad-documenter"
|
2026-01-27 20:18:28 +00:00
|
|
|
version = "0.2.0"
|
2026-01-27 20:05:34 +00:00
|
|
|
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"},
|
|
|
|
|
]
|
2026-01-27 20:18:28 +00:00
|
|
|
keywords = ["cad", "documentation", "engineering", "video", "ai", "vision", "whisper"]
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
|
"Intended Audience :: Manufacturing",
|
|
|
|
|
"Intended Audience :: Science/Research",
|
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
|
"Topic :: Scientific/Engineering",
|
|
|
|
|
"Topic :: Multimedia :: Video",
|
|
|
|
|
]
|
|
|
|
|
|
2026-01-27 20:05:34 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"click>=8.1.0",
|
|
|
|
|
"rich>=13.0.0",
|
|
|
|
|
"jinja2>=3.1.0",
|
|
|
|
|
"openai-whisper>=20231117",
|
|
|
|
|
"pillow>=10.0.0",
|
2026-01-27 20:18:28 +00:00
|
|
|
# Vision API clients
|
|
|
|
|
"anthropic>=0.40.0",
|
|
|
|
|
"openai>=1.50.0",
|
2026-01-27 20:05:34 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=8.0.0",
|
2026-01-27 20:18:28 +00:00
|
|
|
"pytest-cov>=4.0.0",
|
2026-01-27 20:05:34 +00:00
|
|
|
"ruff>=0.1.0",
|
2026-01-27 20:18:28 +00:00
|
|
|
"mypy>=1.0.0",
|
|
|
|
|
]
|
|
|
|
|
pdf = [
|
|
|
|
|
"pandoc", # For PDF generation fallback
|
2026-01-27 20:05:34 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
cad-doc = "cad_documenter.cli:main"
|
|
|
|
|
|
2026-01-27 20:18:28 +00:00
|
|
|
[project.urls]
|
|
|
|
|
Homepage = "http://100.80.199.40:3000/Antoine/CAD-Documenter"
|
|
|
|
|
Documentation = "http://100.80.199.40:3000/Antoine/CAD-Documenter"
|
|
|
|
|
Repository = "http://100.80.199.40:3000/Antoine/CAD-Documenter"
|
|
|
|
|
|
2026-01-27 20:05:34 +00:00
|
|
|
[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"
|
2026-01-27 20:18:28 +00:00
|
|
|
|
|
|
|
|
[tool.ruff.lint]
|
|
|
|
|
select = ["E", "F", "I", "UP"]
|
|
|
|
|
ignore = ["E501"] # Line length handled separately
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
pythonpath = ["src"]
|
|
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
|
python_version = "3.12"
|
|
|
|
|
strict = false
|
|
|
|
|
warn_return_any = true
|
|
|
|
|
warn_unused_ignores = true
|