nodebpy 0.1.1__tar.gz → 0.2.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 (34) hide show
  1. {nodebpy-0.1.1 → nodebpy-0.2.0}/PKG-INFO +4 -4
  2. {nodebpy-0.1.1 → nodebpy-0.2.0}/pyproject.toml +4 -4
  3. nodebpy-0.2.0/src/nodebpy/builder.py +1411 -0
  4. nodebpy-0.2.0/src/nodebpy/nodes/__init__.py +626 -0
  5. nodebpy-0.2.0/src/nodebpy/nodes/attribute.py +481 -0
  6. nodebpy-0.2.0/src/nodebpy/nodes/color.py +76 -0
  7. nodebpy-0.2.0/src/nodebpy/nodes/converter.py +4518 -0
  8. nodebpy-0.2.0/src/nodebpy/nodes/experimental.py +314 -0
  9. nodebpy-0.2.0/src/nodebpy/nodes/geometry.py +5719 -0
  10. nodebpy-0.2.0/src/nodebpy/nodes/grid.py +1228 -0
  11. nodebpy-0.2.0/src/nodebpy/nodes/group.py +20 -0
  12. nodebpy-0.2.0/src/nodebpy/nodes/input.py +2053 -0
  13. nodebpy-0.2.0/src/nodebpy/nodes/interface.py +400 -0
  14. nodebpy-0.2.0/src/nodebpy/nodes/mesh.py +17 -0
  15. nodebpy-0.2.0/src/nodebpy/nodes/texture.py +70 -0
  16. nodebpy-0.2.0/src/nodebpy/nodes/types.py +432 -0
  17. nodebpy-0.2.0/src/nodebpy/nodes/vector.py +0 -0
  18. nodebpy-0.2.0/src/nodebpy/nodes/zone.py +442 -0
  19. {nodebpy-0.1.1 → nodebpy-0.2.0}/src/nodebpy/screenshot.py +2 -1
  20. {nodebpy-0.1.1 → nodebpy-0.2.0}/src/nodebpy/sockets.py +12 -12
  21. nodebpy-0.1.1/src/nodebpy/builder.py +0 -947
  22. nodebpy-0.1.1/src/nodebpy/nodes/__init__.py +0 -12
  23. nodebpy-0.1.1/src/nodebpy/nodes/attribute.py +0 -580
  24. nodebpy-0.1.1/src/nodebpy/nodes/curve.py +0 -2006
  25. nodebpy-0.1.1/src/nodebpy/nodes/geometry.py +0 -7304
  26. nodebpy-0.1.1/src/nodebpy/nodes/input.py +0 -736
  27. nodebpy-0.1.1/src/nodebpy/nodes/manually_specified.py +0 -1382
  28. nodebpy-0.1.1/src/nodebpy/nodes/mesh.py +0 -1408
  29. nodebpy-0.1.1/src/nodebpy/nodes/types.py +0 -119
  30. nodebpy-0.1.1/src/nodebpy/nodes/utilities.py +0 -2344
  31. {nodebpy-0.1.1 → nodebpy-0.2.0}/README.md +0 -0
  32. {nodebpy-0.1.1 → nodebpy-0.2.0}/src/nodebpy/__init__.py +0 -0
  33. {nodebpy-0.1.1 → nodebpy-0.2.0}/src/nodebpy/arrange.py +0 -0
  34. {nodebpy-0.1.1 → nodebpy-0.2.0}/src/nodebpy/screenshot_subprocess.py +0 -0
@@ -1,20 +1,20 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: nodebpy
3
- Version: 0.1.1
3
+ Version: 0.2.0
4
4
  Summary: Build nodes in Blender with code
5
5
  Author: Brady Johnston
6
6
  Author-email: Brady Johnston <brady.johnston@me.com>
7
7
  Requires-Dist: arrangebpy>=0.1.0
8
- Requires-Dist: jsondiff>=2.2.1
9
- Requires-Dist: syrupy>=5.0.0
10
- Requires-Dist: tree-clipper>=0.1.1
11
8
  Requires-Dist: bpy>=5.0.0 ; extra == 'bpy'
12
9
  Requires-Dist: fake-bpy-module>=20260113 ; extra == 'dev'
10
+ Requires-Dist: jsondiff>=2.2.1 ; extra == 'dev'
13
11
  Requires-Dist: pytest>=9.0.2 ; extra == 'dev'
14
12
  Requires-Dist: pytest-cov>=7.0.0 ; extra == 'dev'
15
13
  Requires-Dist: quarto-cli>=1.8.26 ; extra == 'dev'
16
14
  Requires-Dist: quartodoc>=0.11.1 ; extra == 'dev'
17
15
  Requires-Dist: ruff>=0.14.11 ; extra == 'dev'
16
+ Requires-Dist: syrupy>=5.0.0 ; extra == 'dev'
17
+ Requires-Dist: tree-clipper>=0.1.1 ; extra == 'dev'
18
18
  Requires-Dist: ipython>=8.0.0 ; extra == 'jupyter'
19
19
  Requires-Python: >=3.11
20
20
  Provides-Extra: bpy
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nodebpy"
3
- version = "0.1.1"
3
+ version = "0.2.0"
4
4
  description = "Build nodes in Blender with code"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -9,9 +9,6 @@ authors = [
9
9
  requires-python = ">=3.11"
10
10
  dependencies = [
11
11
  "arrangebpy>=0.1.0",
12
- "jsondiff>=2.2.1",
13
- "syrupy>=5.0.0",
14
- "tree-clipper>=0.1.1",
15
12
  ]
16
13
 
17
14
  [project.scripts]
@@ -26,11 +23,14 @@ jupyter = [
26
23
  ]
27
24
  dev = [
28
25
  "fake-bpy-module>=20260113",
26
+ "jsondiff>=2.2.1",
29
27
  "pytest>=9.0.2",
30
28
  "pytest-cov>=7.0.0",
31
29
  "quarto-cli>=1.8.26",
32
30
  "quartodoc>=0.11.1",
33
31
  "ruff>=0.14.11",
32
+ "syrupy>=5.0.0",
33
+ "tree-clipper>=0.1.1",
34
34
  ]
35
35
 
36
36
  [build-system]