Files
cadSet/CADDesigner-Code/pyproject.toml
T
2026-07-22 19:38:36 +08:00

37 lines
866 B
TOML

[project]
name = "caddesigner"
version = "0.1.0"
description = "Conceptual CAD model generation with a general-purpose agent"
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
"cadquery>=2.5.2",
"simplellmfunc==0.7.2",
"numpy",
"uvicorn>=0.34.3",
"fastapi>=0.115.14",
"simplecadapi @ https://files.pythonhosted.org/packages/04/34/5a6a16cd7a533324b73997cbf4094708616eff4eb7aa5496280a79be3444/simplecadapi-2.0.8-py3-none-any.whl",
"rich>=14.0.0",
"pyvista>=0.45.3",
"vtk==9.4.2",
"redis>=6.2.0",
"markdown>=3.8.2",
"requests>=2.32.4",
"types-requests>=2.32.4.20250611",
"python-dotenv>=1.1.1",
]
[project.optional-dependencies]
editor = [
"cq-editor>=0.5.0; sys_platform != 'win32'",
]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"