Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Aug 26, 2016
1 parent 1317988 commit e215e90
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions src/py/autowig/__init__.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,34 @@
"""
"""

from .asg import AbstractSemanticGraph
from .plugin_manager import parser, visitor, documenter, controller, feedback, node_rename, node_path, generator
from .asg import AbstractSemanticGraph, visitor
visitor.plugin = 'all'

from ._parser import parser
if 'pyclanglite' in parser:
parser.plugin = 'pyclanglite'
else:
parser.plugin = 'libclang'
visitor.plugin = 'all'

from ._documenter import documenter
documenter.plugin = 'doxygen2sphinx'

from ._controller import controller
controller.plugin = 'default'

from ._feedback import feedback
feedback.plugin = 'gcc-5'

from ._node_rename import node_rename
node_rename.plugin = 'PEP8'

from ._node_path import node_path
node_path.plugin = 'hash'

from .boost_python_generator import boost_python_call_policy, boost_python_export, boost_python_module, boost_python_decorator
boost_python_call_policy.plugin = 'default'
boost_python_export.proxy = 'mapping'
boost_python_module.proxy = 'default'
boost_python_decorator.proxy = 'default'

from ._scons import scons

0 comments on commit e215e90

Please sign in to comment.