-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (70 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
75 lines (70 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "opencad"
version = "0.2.0"
description = "Modular CAD platform — kernel, solver, feature tree, viewport, and AI agent"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2",
"fastapi>=0.100",
"httpx>=0.27",
"numpy>=2",
]
[project.scripts]
opencad = "opencad.cli:main"
[project.optional-dependencies]
test = [
"pytest>=8",
]
llm = [
"litellm>=1.82.1",
]
occt = [
"cadquery>=2.4",
"OCP>=7.7",
]
full = [
"scipy>=1.12",
"networkx>=3",
"openai>=1.40",
"litellm>=1.82.1",
"cadquery>=2.4",
"OCP>=7.7",
"sse-starlette>=2.0",
"uvicorn>=0.30",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = [
"opencad/tests",
"opencad_kernel/tests",
"opencad_solver/tests",
"opencad_tree/tests",
"opencad_agent/tests",
]
addopts = "-q"
[tool.setuptools.packages.find]
namespaces = false
include = [
"opencad*",
"opencad_kernel*",
"opencad_solver*",
"opencad_tree*",
"opencad_agent*",
]
exclude = [
"opencad.tests",
"opencad.tests.*",
"opencad_kernel.tests",
"opencad_kernel.tests.*",
"opencad_solver.tests",
"opencad_solver.tests.*",
"opencad_tree.tests",
"opencad_tree.tests.*",
"opencad_agent.tests",
"opencad_agent.tests.*",
]