1
2 """Keeps all workflows specific to maya
3
4 :note: ``createWorkflow`` method must be supported in a module keeping workflows
5 :todo: it would be better to have the createWorkflow method in some sort of workflowManager,
6 for now that appears like overkill though
7 """
8 __docformat__ = "restructuredtext"
9
10 from mrv.path import make_path
11 _this_module = __import__( "mrv.automation.workflows", globals(), locals(), ['workflows'] )
12 import pydot
13 import mrv.automation.processes
14
15
16
17 import mrv.automation.base as common
18
19
20 common.addWorkflowsFromDotFiles( _this_module, make_path( __file__ ).parent().glob( "*.dot" ) )
21
22
23