File tree Expand file tree Collapse file tree 5 files changed +5
-12
lines changed Expand file tree Collapse file tree 5 files changed +5
-12
lines changed Original file line number Diff line number Diff line change 1111 </a>
1212</p >
1313
14- NodeGraphQt is a node graph UI framework written in ` PySide2 ` that can be re-implemented .
14+ NodeGraphQt is a node graph UI framework written in python using ` Qt ` .
1515
1616<img src =" https://raw.githubusercontent.com/jchanvfx/NodeGraphQt/main/docs/_images/screenshot.png " width =" 100% " title =" NodeGraphQt " >
1717
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ can override context menus on a per node type basis.
6464.. code-block :: python
6565 :linenos:
6666
67- from NodeGraphQt import BaseNode, NodeGraph, setup_context_menu
67+ from NodeGraphQt import BaseNode, NodeGraph
6868
6969 # define a couple example nodes.
7070 class FooNode (BaseNode ):
@@ -90,9 +90,6 @@ can override context menus on a per node type basis.
9090 node_graph.register_node(FooNode)
9191 node_graph.register_node(BarNode)
9292
93- # set up default menu commands.
94- setup_context_menu(node_graph)
95-
9693 # get the nodes menu.
9794 nodes_menu = node_graph.get_context_menu(' nodes' )
9895
Original file line number Diff line number Diff line change @@ -4,8 +4,7 @@ NodeGraphQt |version_str|
44.. image :: _images/logo.png
55 :align: center
66
7- NodeGraphQt a node graph UI framework written in python that can be implemented
8- and re-purposed into applications supporting PySide2.
7+ NodeGraphQt a node graph UI framework written in python that can be implemented.
98
109.. image :: _images/screenshot.png
1110
Original file line number Diff line number Diff line change 1- Qt.py >= 1.3.0
1+ Qt.py >= 1.4.1
Original file line number Diff line number Diff line change @@ -21,10 +21,7 @@ packages = find:
2121include_package_data = True
2222python_requires = >=3.6
2323install_requires =
24- Qt.py>=1.2.0
25-
26- [options.extras_require]
27- PySide2 = PySide2>=5.15
24+ Qt.py>=1.4.1
2825
2926[options.packages.find]
3027exclude = examples
You can’t perform that action at this time.
0 commit comments