nodebpy 0.1.1__tar.gz → 0.2.1__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.
- {nodebpy-0.1.1 → nodebpy-0.2.1}/PKG-INFO +5 -5
- {nodebpy-0.1.1 → nodebpy-0.2.1}/README.md +1 -1
- {nodebpy-0.1.1 → nodebpy-0.2.1}/pyproject.toml +4 -4
- nodebpy-0.2.1/src/nodebpy/builder.py +1417 -0
- nodebpy-0.2.1/src/nodebpy/nodes/__init__.py +643 -0
- nodebpy-0.2.1/src/nodebpy/nodes/attribute.py +536 -0
- nodebpy-0.2.1/src/nodebpy/nodes/color.py +72 -0
- nodebpy-0.2.1/src/nodebpy/nodes/converter.py +3527 -0
- nodebpy-0.2.1/src/nodebpy/nodes/experimental.py +312 -0
- nodebpy-0.2.1/src/nodebpy/nodes/geometry.py +6264 -0
- nodebpy-0.2.1/src/nodebpy/nodes/grid.py +1713 -0
- nodebpy-0.2.1/src/nodebpy/nodes/group.py +17 -0
- nodebpy-0.2.1/src/nodebpy/nodes/input.py +2241 -0
- nodebpy-0.2.1/src/nodebpy/nodes/interface.py +519 -0
- nodebpy-0.2.1/src/nodebpy/nodes/manual.py +2022 -0
- nodebpy-0.2.1/src/nodebpy/nodes/output.py +85 -0
- nodebpy-0.2.1/src/nodebpy/nodes/texture.py +930 -0
- nodebpy-0.2.1/src/nodebpy/nodes/vector.py +528 -0
- nodebpy-0.2.1/src/nodebpy/nodes/zone.py +442 -0
- {nodebpy-0.1.1 → nodebpy-0.2.1}/src/nodebpy/screenshot.py +2 -1
- {nodebpy-0.1.1 → nodebpy-0.2.1}/src/nodebpy/sockets.py +12 -12
- nodebpy-0.2.1/src/nodebpy/types.py +445 -0
- nodebpy-0.1.1/src/nodebpy/builder.py +0 -947
- nodebpy-0.1.1/src/nodebpy/nodes/__init__.py +0 -12
- nodebpy-0.1.1/src/nodebpy/nodes/attribute.py +0 -580
- nodebpy-0.1.1/src/nodebpy/nodes/curve.py +0 -2006
- nodebpy-0.1.1/src/nodebpy/nodes/geometry.py +0 -7304
- nodebpy-0.1.1/src/nodebpy/nodes/input.py +0 -736
- nodebpy-0.1.1/src/nodebpy/nodes/manually_specified.py +0 -1382
- nodebpy-0.1.1/src/nodebpy/nodes/mesh.py +0 -1408
- nodebpy-0.1.1/src/nodebpy/nodes/types.py +0 -119
- nodebpy-0.1.1/src/nodebpy/nodes/utilities.py +0 -2344
- {nodebpy-0.1.1 → nodebpy-0.2.1}/src/nodebpy/__init__.py +0 -0
- {nodebpy-0.1.1 → nodebpy-0.2.1}/src/nodebpy/arrange.py +0 -0
- {nodebpy-0.1.1 → nodebpy-0.2.1}/src/nodebpy/screenshot_subprocess.py +0 -0
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: nodebpy
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.1
|
|
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
|
|
@@ -76,7 +76,7 @@ with TreeBuilder("AnotherTree") as tree:
|
|
|
76
76
|
|
|
77
77
|
_ = (
|
|
78
78
|
count
|
|
79
|
-
>> n.Points(position=n.RandomValue.vector(min
|
|
79
|
+
>> n.Points(position=n.RandomValue.vector(min=-1))
|
|
80
80
|
>> n.InstanceOnPoints(instance=n.Cube(), rotation=rotation)
|
|
81
81
|
>> n.SetPosition(
|
|
82
82
|
position=n.Position() * 2.0 + (0, 0.2, 0.3),
|
|
@@ -52,7 +52,7 @@ with TreeBuilder("AnotherTree") as tree:
|
|
|
52
52
|
|
|
53
53
|
_ = (
|
|
54
54
|
count
|
|
55
|
-
>> n.Points(position=n.RandomValue.vector(min
|
|
55
|
+
>> n.Points(position=n.RandomValue.vector(min=-1))
|
|
56
56
|
>> n.InstanceOnPoints(instance=n.Cube(), rotation=rotation)
|
|
57
57
|
>> n.SetPosition(
|
|
58
58
|
position=n.Position() * 2.0 + (0, 0.2, 0.3),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "nodebpy"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.2.1"
|
|
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]
|