claude-cad 0.1.1__tar.gz → 0.1.2__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 (26) hide show
  1. {claude_cad-0.1.1/src/claude_cad.egg-info → claude_cad-0.1.2}/PKG-INFO +1 -1
  2. {claude_cad-0.1.1 → claude_cad-0.1.2}/setup.py +2 -1
  3. {claude_cad-0.1.1 → claude_cad-0.1.2/src/claude_cad.egg-info}/PKG-INFO +1 -1
  4. {claude_cad-0.1.1 → claude_cad-0.1.2}/src/claude_cad.egg-info/entry_points.txt +1 -0
  5. {claude_cad-0.1.1 → claude_cad-0.1.2}/INSTALL.md +0 -0
  6. {claude_cad-0.1.1 → claude_cad-0.1.2}/LICENSE +0 -0
  7. {claude_cad-0.1.1 → claude_cad-0.1.2}/MANIFEST.in +0 -0
  8. {claude_cad-0.1.1 → claude_cad-0.1.2}/README.md +0 -0
  9. {claude_cad-0.1.1 → claude_cad-0.1.2}/claude_desktop_config.json +0 -0
  10. {claude_cad-0.1.1 → claude_cad-0.1.2}/examples/lego_brick.py +0 -0
  11. {claude_cad-0.1.1 → claude_cad-0.1.2}/examples/simple_box.py +0 -0
  12. {claude_cad-0.1.1 → claude_cad-0.1.2}/examples/text_to_model.py +0 -0
  13. {claude_cad-0.1.1 → claude_cad-0.1.2}/pyproject.toml +0 -0
  14. {claude_cad-0.1.1 → claude_cad-0.1.2}/requirements.txt +0 -0
  15. {claude_cad-0.1.1 → claude_cad-0.1.2}/setup.cfg +0 -0
  16. {claude_cad-0.1.1 → claude_cad-0.1.2}/src/claude_cad/__init__.py +0 -0
  17. {claude_cad-0.1.1 → claude_cad-0.1.2}/src/claude_cad/mock_server.py +0 -0
  18. {claude_cad-0.1.1 → claude_cad-0.1.2}/src/claude_cad/model_generator.py +0 -0
  19. {claude_cad-0.1.1 → claude_cad-0.1.2}/src/claude_cad/server.py +0 -0
  20. {claude_cad-0.1.1 → claude_cad-0.1.2}/src/claude_cad/utils.py +0 -0
  21. {claude_cad-0.1.1 → claude_cad-0.1.2}/src/claude_cad.egg-info/SOURCES.txt +0 -0
  22. {claude_cad-0.1.1 → claude_cad-0.1.2}/src/claude_cad.egg-info/dependency_links.txt +0 -0
  23. {claude_cad-0.1.1 → claude_cad-0.1.2}/src/claude_cad.egg-info/requires.txt +0 -0
  24. {claude_cad-0.1.1 → claude_cad-0.1.2}/src/claude_cad.egg-info/top_level.txt +0 -0
  25. {claude_cad-0.1.1 → claude_cad-0.1.2}/tests/__init__.py +0 -0
  26. {claude_cad-0.1.1 → claude_cad-0.1.2}/tests/test_model_generator.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude_cad
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: An MCP plugin for creating 3D models with Claude AI using CadQuery
5
5
  Home-page: https://github.com/bronson/claude_cad
6
6
  Author: Bronson Dunbar
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="claude_cad",
5
- version="0.1.1",
5
+ version="0.1.2",
6
6
  packages=find_packages(where="src"),
7
7
  package_dir={"": "src"},
8
8
  install_requires=[
@@ -12,6 +12,7 @@ setup(
12
12
  entry_points={
13
13
  "console_scripts": [
14
14
  "claude_cad=claude_cad.server:main",
15
+ "claude-cad=claude_cad.server:main",
15
16
  ],
16
17
  },
17
18
  author="Bronson Dunbar",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude_cad
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: An MCP plugin for creating 3D models with Claude AI using CadQuery
5
5
  Home-page: https://github.com/bronson/claude_cad
6
6
  Author: Bronson Dunbar
@@ -1,2 +1,3 @@
1
1
  [console_scripts]
2
+ claude-cad = claude_cad.server:main
2
3
  claude_cad = claude_cad.server:main
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes