├── .azure-templates ├── linux.yml └── win.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── environment.devenv.yml ├── environment.yml ├── python_package ├── __init__.py ├── _cpp_package │ ├── CMakeLists.txt │ ├── example_cpp.cpp │ └── example_cpp.hpp ├── bindings │ ├── CMakeLists.txt │ └── bindings.cpp └── foo_module.py ├── setup.cfg ├── setup.py └── tests ├── __pycache__ └── test_foo.cpython-37-pytest-5.0.1.pyc └── test_foo.py /.azure-templates/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/.azure-templates/linux.yml -------------------------------------------------------------------------------- /.azure-templates/win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/.azure-templates/win.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /environment.devenv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/environment.devenv.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/environment.yml -------------------------------------------------------------------------------- /python_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_package/_cpp_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/python_package/_cpp_package/CMakeLists.txt -------------------------------------------------------------------------------- /python_package/_cpp_package/example_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/python_package/_cpp_package/example_cpp.cpp -------------------------------------------------------------------------------- /python_package/_cpp_package/example_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/python_package/_cpp_package/example_cpp.hpp -------------------------------------------------------------------------------- /python_package/bindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/python_package/bindings/CMakeLists.txt -------------------------------------------------------------------------------- /python_package/bindings/bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/python_package/bindings/bindings.cpp -------------------------------------------------------------------------------- /python_package/foo_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/python_package/foo_module.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__pycache__/test_foo.cpython-37-pytest-5.0.1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/tests/__pycache__/test_foo.cpython-37-pytest-5.0.1.pyc -------------------------------------------------------------------------------- /tests/test_foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volpatto/simple_pybind_example/HEAD/tests/test_foo.py --------------------------------------------------------------------------------