[console_scripts]
wengine = workflow_engine.cli.main:main

[aceteam_workflow_engine.nodes]
Add = workflow_engine.nodes.arithmetic:AddNode
AppendToFile = workflow_engine.nodes.text:AppendToFileNode
ConstantBoolean = workflow_engine.nodes.constant:ConstantBooleanNode
ConstantInteger = workflow_engine.nodes.constant:ConstantIntegerNode
ConstantString = workflow_engine.nodes.constant:ConstantStringNode
Error = workflow_engine.nodes.error:ErrorNode
ExpandData = workflow_engine.nodes.data:ExpandDataNode
ExpandMapping = workflow_engine.nodes.data:ExpandMappingNode
ExpandSequence = workflow_engine.nodes.data:ExpandSequenceNode
Factorization = workflow_engine.nodes.arithmetic:FactorizationNode
ForEach = workflow_engine.nodes.iteration:ForEachNode
GatherData = workflow_engine.nodes.data:GatherDataNode
GatherMapping = workflow_engine.nodes.data:GatherMappingNode
GatherSequence = workflow_engine.nodes.data:GatherSequenceNode
If = workflow_engine.nodes.conditional:IfNode
IfElse = workflow_engine.nodes.conditional:IfElseNode
Input = workflow_engine.core.io:InputNode
Output = workflow_engine.core.io:OutputNode
Sum = workflow_engine.nodes.arithmetic:SumNode
