├── .gitignore ├── .travis.yml ├── LICENSE ├── NOTICE ├── README.rst ├── appveyor.yml ├── doc ├── Makefile ├── api.rst ├── cfg.py ├── conf.py ├── contributing.rst ├── environment.yml ├── faq │ └── index.rst ├── index.rst ├── install │ ├── anaconda.rst │ ├── docker.rst │ └── source.rst ├── make.bat ├── references.bib ├── thumbnails │ ├── EuroSciPy2017a.jpg │ ├── EuroSciPy2017b.jpg │ └── arXiv2017.jpg ├── user_guide.rst └── zreferences.rst ├── etc └── conda │ ├── autowig-toolchain │ ├── activate.bat │ ├── activate.sh │ ├── bld.bat │ ├── build.sh │ ├── deactivate.bat │ ├── deactivate.sh │ └── meta.yaml │ └── python-autowig │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── readthedocs.yml ├── setup.py ├── src └── py │ └── autowig │ ├── __init__.py │ ├── _controller.py │ ├── _documenter.py │ ├── _feedback.py │ ├── _generator.py │ ├── _node_path.py │ ├── _node_rename.py │ ├── _parser.py │ ├── asg.py │ ├── boost_python_generator.py │ ├── comment_feedback.py │ ├── default_controller.py │ ├── doxygen2sphinx.py │ ├── edit_feedback.py │ ├── libclang_parser.py │ ├── plugin.py │ ├── pybind11_generator.py │ └── tools.py ├── test ├── test_basic.py ├── test_feedback.py └── test_subset.py └── travis.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/appveyor.yml -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/cfg.py -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/contributing.rst -------------------------------------------------------------------------------- /doc/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/environment.yml -------------------------------------------------------------------------------- /doc/faq/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/faq/index.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/install/anaconda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/install/anaconda.rst -------------------------------------------------------------------------------- /doc/install/docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/install/docker.rst -------------------------------------------------------------------------------- /doc/install/source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/install/source.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/references.bib -------------------------------------------------------------------------------- /doc/thumbnails/EuroSciPy2017a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/thumbnails/EuroSciPy2017a.jpg -------------------------------------------------------------------------------- /doc/thumbnails/EuroSciPy2017b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/thumbnails/EuroSciPy2017b.jpg -------------------------------------------------------------------------------- /doc/thumbnails/arXiv2017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/thumbnails/arXiv2017.jpg -------------------------------------------------------------------------------- /doc/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/user_guide.rst -------------------------------------------------------------------------------- /doc/zreferences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/doc/zreferences.rst -------------------------------------------------------------------------------- /etc/conda/autowig-toolchain/activate.bat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/conda/autowig-toolchain/activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/etc/conda/autowig-toolchain/activate.sh -------------------------------------------------------------------------------- /etc/conda/autowig-toolchain/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/etc/conda/autowig-toolchain/bld.bat -------------------------------------------------------------------------------- /etc/conda/autowig-toolchain/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/etc/conda/autowig-toolchain/build.sh -------------------------------------------------------------------------------- /etc/conda/autowig-toolchain/deactivate.bat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/conda/autowig-toolchain/deactivate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/etc/conda/autowig-toolchain/deactivate.sh -------------------------------------------------------------------------------- /etc/conda/autowig-toolchain/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/etc/conda/autowig-toolchain/meta.yaml -------------------------------------------------------------------------------- /etc/conda/python-autowig/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/etc/conda/python-autowig/bld.bat -------------------------------------------------------------------------------- /etc/conda/python-autowig/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/etc/conda/python-autowig/build.sh -------------------------------------------------------------------------------- /etc/conda/python-autowig/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/etc/conda/python-autowig/meta.yaml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/setup.py -------------------------------------------------------------------------------- /src/py/autowig/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/__init__.py -------------------------------------------------------------------------------- /src/py/autowig/_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/_controller.py -------------------------------------------------------------------------------- /src/py/autowig/_documenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/_documenter.py -------------------------------------------------------------------------------- /src/py/autowig/_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/_feedback.py -------------------------------------------------------------------------------- /src/py/autowig/_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/_generator.py -------------------------------------------------------------------------------- /src/py/autowig/_node_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/_node_path.py -------------------------------------------------------------------------------- /src/py/autowig/_node_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/_node_rename.py -------------------------------------------------------------------------------- /src/py/autowig/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/_parser.py -------------------------------------------------------------------------------- /src/py/autowig/asg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/asg.py -------------------------------------------------------------------------------- /src/py/autowig/boost_python_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/boost_python_generator.py -------------------------------------------------------------------------------- /src/py/autowig/comment_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/comment_feedback.py -------------------------------------------------------------------------------- /src/py/autowig/default_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/default_controller.py -------------------------------------------------------------------------------- /src/py/autowig/doxygen2sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/doxygen2sphinx.py -------------------------------------------------------------------------------- /src/py/autowig/edit_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/edit_feedback.py -------------------------------------------------------------------------------- /src/py/autowig/libclang_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/libclang_parser.py -------------------------------------------------------------------------------- /src/py/autowig/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/plugin.py -------------------------------------------------------------------------------- /src/py/autowig/pybind11_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/pybind11_generator.py -------------------------------------------------------------------------------- /src/py/autowig/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/src/py/autowig/tools.py -------------------------------------------------------------------------------- /test/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/test/test_basic.py -------------------------------------------------------------------------------- /test/test_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/test/test_feedback.py -------------------------------------------------------------------------------- /test/test_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/test/test_subset.py -------------------------------------------------------------------------------- /travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatisKit/AutoWIG/HEAD/travis.yml --------------------------------------------------------------------------------