py_installation = import('python').find_installation('python3', pure: false) py_mod = py_installation.extension_module( '_phys', sources: [ meson.project_source_root() + '/src-pybind/bindings.cpp', meson.project_source_root() + '/src-pybind/composition/bindings.cpp', meson.project_source_root() + '/src-pybind/constants/bindings.cpp', meson.project_source_root() + '/src-pybind/config/bindings.cpp', ], dependencies : [ pybind11_dep, const_dep, config_dep, composition_dep, ], cpp_args : ['-UNDEBUG'], install : true, subdir: 'fourdst', ) py_installation.install_sources( files( meson.project_source_root() + '/src-pybind/fourdst/__init__.pyi', meson.project_source_root() + '/src-pybind/fourdst/__init__.py', ), subdir: 'fourdst', ) py_installation.install_sources( files( meson.project_source_root() + '/src-pybind/fourdst/_phys/__init__.pyi', meson.project_source_root() + '/src-pybind/fourdst/_phys/atomic.pyi', meson.project_source_root() + '/src-pybind/fourdst/_phys/config.pyi', meson.project_source_root() + '/src-pybind/fourdst/_phys/constants.pyi', meson.project_source_root() + '/src-pybind/fourdst/_phys/exceptions.pyi', ), subdir: 'fourdst/', ) py_installation.install_sources( files( meson.project_source_root() + '/src-pybind/fourdst/_phys/composition/__init__.pyi', meson.project_source_root() + '/src-pybind/fourdst/_phys/composition/utils.pyi', ), subdir: 'fourdst/composition', ) py_installation.install_sources( files( meson.project_source_root() + '/src-pybind/fourdst/cli/__init__.py', meson.project_source_root() + '/src-pybind/fourdst/cli/main.py', ), subdir: 'fourdst/cli', ) py_installation.install_sources( files( meson.project_source_root() + '/src-pybind/fourdst/cli/templates/meson.build.in', meson.project_source_root() + '/src-pybind/fourdst/cli/templates/plugin.cpp.in', ), subdir: 'fourdst/cli/templates', ) py_installation.install_sources( files( meson.project_source_root() + '/src-pybind/fourdst/cli/bundle/__init__.py', meson.project_source_root() + '/src-pybind/fourdst/cli/bundle/create.py', meson.project_source_root() + '/src-pybind/fourdst/cli/bundle/fill.py', meson.project_source_root() + '/src-pybind/fourdst/cli/bundle/inspect.py', meson.project_source_root() + '/src-pybind/fourdst/cli/bundle/sign.py', meson.project_source_root() + '/src-pybind/fourdst/cli/bundle/clear.py', meson.project_source_root() + '/src-pybind/fourdst/cli/bundle/diff.py', meson.project_source_root() + '/src-pybind/fourdst/cli/bundle/validate.py', ), subdir: 'fourdst/cli/bundle' ) py_installation.install_sources( files( meson.project_source_root() + '/src-pybind/fourdst/cli/cache/__init__.py', meson.project_source_root() + '/src-pybind/fourdst/cli/cache/clear.py' ), subdir: 'fourdst/cli/cache' ) py_installation.install_sources( files( meson.project_source_root() + '/src-pybind/fourdst/cli/common/__init__.py', meson.project_source_root() + '/src-pybind/fourdst/cli/common/config.py', meson.project_source_root() + '/src-pybind/fourdst/cli/common/templates.py', meson.project_source_root() + '/src-pybind/fourdst/cli/common/utils.py', ), subdir: 'fourdst/cli/common' ) py_installation.install_sources( files( meson.project_source_root() + '/src-pybind/fourdst/cli/keys/__init__.py', meson.project_source_root() + '/src-pybind/fourdst/cli/keys/generate.py', meson.project_source_root() + '/src-pybind/fourdst/cli/keys/sync.py', meson.project_source_root() + '/src-pybind/fourdst/cli/keys/add.py', meson.project_source_root() + '/src-pybind/fourdst/cli/keys/list.py', meson.project_source_root() + '/src-pybind/fourdst/cli/keys/remove.py', ), subdir: 'fourdst/cli/keys' ) py_installation.install_sources( files( meson.project_source_root() + '/src-pybind/fourdst/cli/keys/remote/__init__.py', meson.project_source_root() + '/src-pybind/fourdst/cli/keys/remote/add.py', meson.project_source_root() + '/src-pybind/fourdst/cli/keys/remote/list.py', meson.project_source_root() + '/src-pybind/fourdst/cli/keys/remote/remove.py', ), subdir: 'fourdst/cli/keys/remote' ) py_installation.install_sources( files( meson.project_source_root() + '/src-pybind/fourdst/cli/plugin/__init__.py', meson.project_source_root() + '/src-pybind/fourdst/cli/plugin/init.py', meson.project_source_root() + '/src-pybind/fourdst/cli/plugin/pack.py', meson.project_source_root() + '/src-pybind/fourdst/cli/plugin/extract.py', meson.project_source_root() + '/src-pybind/fourdst/cli/plugin/diff.py', meson.project_source_root() + '/src-pybind/fourdst/cli/plugin/validate.py', ), subdir: 'fourdst/cli/plugin' ) py_installation.install_sources( files( meson.project_source_root() + '/src-pybind/fourdst/core/__init__.py', meson.project_source_root() + '/src-pybind/fourdst/core/build.py', meson.project_source_root() + '/src-pybind/fourdst/core/bundle.py', meson.project_source_root() + '/src-pybind/fourdst/core/config.py', meson.project_source_root() + '/src-pybind/fourdst/core/platform.py', meson.project_source_root() + '/src-pybind/fourdst/core/utils.py', meson.project_source_root() + '/src-pybind/fourdst/core/keys.py', meson.project_source_root() + '/src-pybind/fourdst/core/plugin.py', ), subdir: 'fourdst/core' ) py_installation.install_sources( files( meson.project_source_root() + '/electron/bridge.py', ), subdir: 'fourdst/electron' )