rhinomcp 0.1.3.0__py3-none-any.whl → 0.1.3.1__py3-none-any.whl
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.
- rhinomcp/server.py +1 -4
- rhinomcp/static/rhinoscriptsyntax.json +14642 -0
- {rhinomcp-0.1.3.0.dist-info → rhinomcp-0.1.3.1.dist-info}/METADATA +1 -1
- {rhinomcp-0.1.3.0.dist-info → rhinomcp-0.1.3.1.dist-info}/RECORD +7 -6
- {rhinomcp-0.1.3.0.dist-info → rhinomcp-0.1.3.1.dist-info}/WHEEL +0 -0
- {rhinomcp-0.1.3.0.dist-info → rhinomcp-0.1.3.1.dist-info}/entry_points.txt +0 -0
- {rhinomcp-0.1.3.0.dist-info → rhinomcp-0.1.3.1.dist-info}/top_level.txt +0 -0
rhinomcp/server.py
CHANGED
@@ -12,11 +12,8 @@ from pathlib import Path
|
|
12
12
|
import base64
|
13
13
|
from urllib.parse import urlparse
|
14
14
|
|
15
|
-
# load rhino_script_syntax.json
|
16
|
-
from pathlib import Path
|
17
|
-
|
18
15
|
# Define path to static folder
|
19
|
-
JSONFILE = Path("./static/rhinoscriptsyntax.json")
|
16
|
+
JSONFILE = Path("./src/rhinomcp/static/rhinoscriptsyntax.json")
|
20
17
|
|
21
18
|
with open(JSONFILE, 'r') as f:
|
22
19
|
rhinoscriptsyntax_json = json.loads(f.read())
|