gitcad 0.7.7__tar.gz → 0.8.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. gitcad-0.8.0/PKG-INFO +59 -0
  2. gitcad-0.8.0/README.md +31 -0
  3. {gitcad-0.7.7 → gitcad-0.8.0}/pyproject.toml +7 -7
  4. gitcad-0.7.7/PKG-INFO +0 -70
  5. gitcad-0.7.7/README.md +0 -42
  6. {gitcad-0.7.7 → gitcad-0.8.0}/.gitignore +0 -0
  7. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/bench/__init__.py +0 -0
  8. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/bench/corpus.py +0 -0
  9. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/bench/scorecard.py +0 -0
  10. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/bridge.py +0 -0
  11. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/convert.py +0 -0
  12. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/explore.py +0 -0
  13. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/fasteners.py +0 -0
  14. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/init.py +0 -0
  15. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/lots.py +0 -0
  16. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/mcp/__init__.py +0 -0
  17. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/mcp/server.py +0 -0
  18. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/merge3.py +0 -0
  19. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/pcba.py +0 -0
  20. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/release.py +0 -0
  21. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/render.py +0 -0
  22. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/requirements.py +0 -0
  23. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/review.py +0 -0
  24. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/viewer/__init__.py +0 -0
  25. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/viewer/boardsvg.py +0 -0
  26. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/viewer/page.py +0 -0
  27. {gitcad-0.7.7 → gitcad-0.8.0}/src/gitcad/viewer/server.py +0 -0
gitcad-0.8.0/PKG-INFO ADDED
@@ -0,0 +1,59 @@
1
+ Metadata-Version: 2.4
2
+ Name: gitcad
3
+ Version: 0.8.0
4
+ Summary: Headless, git-native B-rep CAD (metapackage: core, mechanical, and electrical)
5
+ Project-URL: Homepage, https://gitcad.xyz
6
+ Project-URL: Repository, https://github.com/gitcad-xyz/gitcad
7
+ Project-URL: Issues, https://github.com/gitcad-xyz/gitcad/issues
8
+ Author-email: Dan Willis <danielcwillis@gmail.com>
9
+ License-Expression: Apache-2.0
10
+ Keywords: brep,cad,eda,git,headless,mcp
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Manufacturing
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
18
+ Classifier: Topic :: Scientific/Engineering
19
+ Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
20
+ Requires-Python: >=3.10
21
+ Requires-Dist: gitcad-core==0.8.0
22
+ Requires-Dist: gitcad-ecad==0.8.0
23
+ Requires-Dist: gitcad-mech==0.8.0
24
+ Requires-Dist: mcp>=1.0
25
+ Provides-Extra: occt
26
+ Requires-Dist: gitcad-mech[occt]==0.8.0; extra == 'occt'
27
+ Description-Content-Type: text/markdown
28
+
29
+ # gitcad
30
+
31
+ Headless, git-native B-rep CAD — mechanical and electrical.
32
+
33
+ Models are stored as canonical text; geometry is a build artifact. Entity
34
+ identity is derived from construction lineage rather than ordinal position.
35
+ Each build produces a report.
36
+
37
+ This metapackage installs:
38
+
39
+ - `gitcad-core` — canonical text, identity, the Part standard, report pipeline.
40
+ - `gitcad-mech` — document model, geometry kernel, sketches, drawings, importers.
41
+ - `gitcad-ecad` — schematic and ERC, board and DRC, fabrication outputs.
42
+
43
+ ## Install
44
+
45
+ ```
46
+ pip install gitcad # core, mechanical, electrical, MCP server, native kernel
47
+ pip install gitcad[occt] # add the optional alternative kernel backend
48
+ ```
49
+
50
+ The mechanical geometry kernel uses exact rational arithmetic. Its native
51
+ (compiled) build is installed by default on common platforms; elsewhere the
52
+ pure-Python build is used.
53
+
54
+ ## Console commands
55
+
56
+ `gitcad-init`, `gitcad-render`, `gitcad-view`, `gitcad-review`, `gitcad-merge`,
57
+ `gitcad-verify`, `gitcad-convert`, `gitcad-explore`, `gitcad-mcp`, `gitcad-lot`.
58
+
59
+ License: Apache-2.0. https://gitcad.xyz · https://github.com/gitcad-xyz/gitcad
gitcad-0.8.0/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # gitcad
2
+
3
+ Headless, git-native B-rep CAD — mechanical and electrical.
4
+
5
+ Models are stored as canonical text; geometry is a build artifact. Entity
6
+ identity is derived from construction lineage rather than ordinal position.
7
+ Each build produces a report.
8
+
9
+ This metapackage installs:
10
+
11
+ - `gitcad-core` — canonical text, identity, the Part standard, report pipeline.
12
+ - `gitcad-mech` — document model, geometry kernel, sketches, drawings, importers.
13
+ - `gitcad-ecad` — schematic and ERC, board and DRC, fabrication outputs.
14
+
15
+ ## Install
16
+
17
+ ```
18
+ pip install gitcad # core, mechanical, electrical, MCP server, native kernel
19
+ pip install gitcad[occt] # add the optional alternative kernel backend
20
+ ```
21
+
22
+ The mechanical geometry kernel uses exact rational arithmetic. Its native
23
+ (compiled) build is installed by default on common platforms; elsewhere the
24
+ pure-Python build is used.
25
+
26
+ ## Console commands
27
+
28
+ `gitcad-init`, `gitcad-render`, `gitcad-view`, `gitcad-review`, `gitcad-merge`,
29
+ `gitcad-verify`, `gitcad-convert`, `gitcad-explore`, `gitcad-mcp`, `gitcad-lot`.
30
+
31
+ License: Apache-2.0. https://gitcad.xyz · https://github.com/gitcad-xyz/gitcad
@@ -4,13 +4,13 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "gitcad"
7
- version = "0.7.7"
8
- description = "Agent-first, headless, git-native CAD (metapackage: core + mech + ecad + MCP + viewer + release)"
7
+ version = "0.8.0"
8
+ description = "Headless, git-native B-rep CAD (metapackage: core, mechanical, and electrical)"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
11
11
  license = "Apache-2.0"
12
12
  authors = [{name = "Dan Willis", email = "danielcwillis@gmail.com"}]
13
- keywords = ["cad", "brep", "occt", "mcp", "agent", "headless", "git", "eda"]
13
+ keywords = ["cad", "brep", "mcp", "headless", "git", "eda"]
14
14
  classifiers = [
15
15
  "Development Status :: 4 - Beta",
16
16
  "Intended Audience :: Developers",
@@ -26,15 +26,15 @@ classifiers = [
26
26
  # compiled kernel (forgekernel_rs) is likewise a default dep of gitcad-mech on
27
27
  # mainstream architectures — no extra needed for either.
28
28
  dependencies = [
29
- "gitcad-core==0.7.7",
30
- "gitcad-mech==0.7.7",
31
- "gitcad-ecad==0.7.7",
29
+ "gitcad-core==0.8.0",
30
+ "gitcad-mech==0.8.0",
31
+ "gitcad-ecad==0.8.0",
32
32
  "mcp>=1.0",
33
33
  ]
34
34
 
35
35
  [project.optional-dependencies]
36
36
  # OCCT oracle/fallback kernel.
37
- occt = ["gitcad-mech[occt]==0.7.7"]
37
+ occt = ["gitcad-mech[occt]==0.8.0"]
38
38
 
39
39
  [project.urls]
40
40
  Homepage = "https://gitcad.xyz"
gitcad-0.7.7/PKG-INFO DELETED
@@ -1,70 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: gitcad
3
- Version: 0.7.7
4
- Summary: Agent-first, headless, git-native CAD (metapackage: core + mech + ecad + MCP + viewer + release)
5
- Project-URL: Homepage, https://gitcad.xyz
6
- Project-URL: Repository, https://github.com/gitcad-xyz/gitcad
7
- Project-URL: Issues, https://github.com/gitcad-xyz/gitcad/issues
8
- Author-email: Dan Willis <danielcwillis@gmail.com>
9
- License-Expression: Apache-2.0
10
- Keywords: agent,brep,cad,eda,git,headless,mcp,occt
11
- Classifier: Development Status :: 4 - Beta
12
- Classifier: Intended Audience :: Developers
13
- Classifier: Intended Audience :: Manufacturing
14
- Classifier: License :: OSI Approved :: Apache Software License
15
- Classifier: Operating System :: OS Independent
16
- Classifier: Programming Language :: Python :: 3
17
- Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
18
- Classifier: Topic :: Scientific/Engineering
19
- Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
20
- Requires-Python: >=3.10
21
- Requires-Dist: gitcad-core==0.7.7
22
- Requires-Dist: gitcad-ecad==0.7.7
23
- Requires-Dist: gitcad-mech==0.7.7
24
- Requires-Dist: mcp>=1.0
25
- Provides-Extra: occt
26
- Requires-Dist: gitcad-mech[occt]==0.7.7; extra == 'occt'
27
- Description-Content-Type: text/markdown
28
-
29
- # gitcad
30
-
31
- **Agent-first, headless, git-native CAD — mechanical and electrical, one substrate.**
32
-
33
- gitcad is a boundary-representation CAD system designed to be driven by agents and
34
- version-controlled like source. Models are byte-canonical text (geometry is a
35
- build artifact, never committed); identity is construction-lineage based, never
36
- ordinal; every build produces a reviewable, diffable report.
37
-
38
- This metapackage installs the whole system:
39
-
40
- | package | domain |
41
- |---|---|
42
- | [`gitcad-core`](https://pypi.org/project/gitcad-core/) | canonical text, stable identity, the Part standard, report pipeline |
43
- | [`gitcad-mech`](https://pypi.org/project/gitcad-mech/) | document model, **exact B-rep kernel**, sketches, drawings, importers |
44
- | [`gitcad-ecad`](https://pypi.org/project/gitcad-ecad/) | schematic + ERC, board + DRC, fab outputs, KiCad import |
45
-
46
- ## Install
47
-
48
- ```bash
49
- pip install gitcad # full system: both domains, exact+native kernel, MCP server
50
- pip install gitcad[occt] # + OCCT kernel oracle/fallback (cadquery-ocp)
51
- ```
52
-
53
- `pip install gitcad` is complete and agent-ready out of the box — mechanical and
54
- electrical, the exact kernel with its native accelerator, and the `gitcad-mcp`
55
- Model Context Protocol server. Only OCCT (a heavy optional oracle) is an extra.
56
-
57
- The mechanical kernel is **exact**: topological decisions are made in rational
58
- arithmetic (ℚ), never by a floating-point tolerance — see
59
- [`forgekernel`](https://pypi.org/project/forgekernel/) and the
60
- [benchmarks vs OCCT](https://github.com/gitcad-xyz/gitcad/blob/main/bench/RUST-vs-OCCT.md).
61
- The compiled Rust build of the hot paths installs **by default** on mainstream
62
- platforms (identical results, only faster); on an architecture with no wheel it is
63
- skipped and the kernel runs pure-Python — same answers, nothing breaks.
64
-
65
- ## Console tools
66
-
67
- `gitcad-init`, `gitcad-render`, `gitcad-view`, `gitcad-review`, `gitcad-merge`,
68
- `gitcad-verify`, `gitcad-convert`, `gitcad-explore`, `gitcad-mcp`, `gitcad-lot`.
69
-
70
- Apache-2.0 · https://gitcad.xyz · https://github.com/gitcad-xyz/gitcad
gitcad-0.7.7/README.md DELETED
@@ -1,42 +0,0 @@
1
- # gitcad
2
-
3
- **Agent-first, headless, git-native CAD — mechanical and electrical, one substrate.**
4
-
5
- gitcad is a boundary-representation CAD system designed to be driven by agents and
6
- version-controlled like source. Models are byte-canonical text (geometry is a
7
- build artifact, never committed); identity is construction-lineage based, never
8
- ordinal; every build produces a reviewable, diffable report.
9
-
10
- This metapackage installs the whole system:
11
-
12
- | package | domain |
13
- |---|---|
14
- | [`gitcad-core`](https://pypi.org/project/gitcad-core/) | canonical text, stable identity, the Part standard, report pipeline |
15
- | [`gitcad-mech`](https://pypi.org/project/gitcad-mech/) | document model, **exact B-rep kernel**, sketches, drawings, importers |
16
- | [`gitcad-ecad`](https://pypi.org/project/gitcad-ecad/) | schematic + ERC, board + DRC, fab outputs, KiCad import |
17
-
18
- ## Install
19
-
20
- ```bash
21
- pip install gitcad # full system: both domains, exact+native kernel, MCP server
22
- pip install gitcad[occt] # + OCCT kernel oracle/fallback (cadquery-ocp)
23
- ```
24
-
25
- `pip install gitcad` is complete and agent-ready out of the box — mechanical and
26
- electrical, the exact kernel with its native accelerator, and the `gitcad-mcp`
27
- Model Context Protocol server. Only OCCT (a heavy optional oracle) is an extra.
28
-
29
- The mechanical kernel is **exact**: topological decisions are made in rational
30
- arithmetic (ℚ), never by a floating-point tolerance — see
31
- [`forgekernel`](https://pypi.org/project/forgekernel/) and the
32
- [benchmarks vs OCCT](https://github.com/gitcad-xyz/gitcad/blob/main/bench/RUST-vs-OCCT.md).
33
- The compiled Rust build of the hot paths installs **by default** on mainstream
34
- platforms (identical results, only faster); on an architecture with no wheel it is
35
- skipped and the kernel runs pure-Python — same answers, nothing breaks.
36
-
37
- ## Console tools
38
-
39
- `gitcad-init`, `gitcad-render`, `gitcad-view`, `gitcad-review`, `gitcad-merge`,
40
- `gitcad-verify`, `gitcad-convert`, `gitcad-explore`, `gitcad-mcp`, `gitcad-lot`.
41
-
42
- Apache-2.0 · https://gitcad.xyz · https://github.com/gitcad-xyz/gitcad
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes