├── .gitignore ├── LICENSE.txt ├── README.md ├── depends ├── __init__.py ├── darkorange.stylesheet ├── data_packets │ ├── sampledatapackets.py │ └── vcldatapackets.py ├── depends ├── depends_communications.py ├── depends_dag.py ├── depends_data_packet.py ├── depends_file_dialog.py ├── depends_graphics_widgets.py ├── depends_main_window.py ├── depends_node.py ├── depends_output_recipe.py ├── depends_property_widget.py ├── depends_scenegraph_widget.py ├── depends_undo_commands.py ├── depends_util.py ├── depends_variable_widget.py ├── depends_variables.py ├── depends_version.py ├── doc │ ├── development.txt │ └── user_manual.txt ├── file_dialogs │ └── standard_qt.py ├── nodes │ ├── samplenodes.py │ └── vclnodes.py └── output_recipes │ ├── bash_recipe.py │ └── cmd_recipe.py ├── setup.py └── todo.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | dist 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/README.md -------------------------------------------------------------------------------- /depends/__init__.py: -------------------------------------------------------------------------------- 1 | from .depends_version import * 2 | -------------------------------------------------------------------------------- /depends/darkorange.stylesheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/darkorange.stylesheet -------------------------------------------------------------------------------- /depends/data_packets/sampledatapackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/data_packets/sampledatapackets.py -------------------------------------------------------------------------------- /depends/data_packets/vcldatapackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/data_packets/vcldatapackets.py -------------------------------------------------------------------------------- /depends/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends -------------------------------------------------------------------------------- /depends/depends_communications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_communications.py -------------------------------------------------------------------------------- /depends/depends_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_dag.py -------------------------------------------------------------------------------- /depends/depends_data_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_data_packet.py -------------------------------------------------------------------------------- /depends/depends_file_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_file_dialog.py -------------------------------------------------------------------------------- /depends/depends_graphics_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_graphics_widgets.py -------------------------------------------------------------------------------- /depends/depends_main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_main_window.py -------------------------------------------------------------------------------- /depends/depends_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_node.py -------------------------------------------------------------------------------- /depends/depends_output_recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_output_recipe.py -------------------------------------------------------------------------------- /depends/depends_property_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_property_widget.py -------------------------------------------------------------------------------- /depends/depends_scenegraph_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_scenegraph_widget.py -------------------------------------------------------------------------------- /depends/depends_undo_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_undo_commands.py -------------------------------------------------------------------------------- /depends/depends_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_util.py -------------------------------------------------------------------------------- /depends/depends_variable_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_variable_widget.py -------------------------------------------------------------------------------- /depends/depends_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_variables.py -------------------------------------------------------------------------------- /depends/depends_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/depends_version.py -------------------------------------------------------------------------------- /depends/doc/development.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/doc/development.txt -------------------------------------------------------------------------------- /depends/doc/user_manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/doc/user_manual.txt -------------------------------------------------------------------------------- /depends/file_dialogs/standard_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/file_dialogs/standard_qt.py -------------------------------------------------------------------------------- /depends/nodes/samplenodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/nodes/samplenodes.py -------------------------------------------------------------------------------- /depends/nodes/vclnodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/nodes/vclnodes.py -------------------------------------------------------------------------------- /depends/output_recipes/bash_recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/output_recipes/bash_recipe.py -------------------------------------------------------------------------------- /depends/output_recipes/cmd_recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/depends/output_recipes/cmd_recipe.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/setup.py -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-gardner/dependsworkflow/HEAD/todo.txt --------------------------------------------------------------------------------