AUTHORS.rst CONTRIBUTING.rst HISTORY.rst LICENSE MANIFEST.in README.rst requirements-dev.txt requirements.txt setup.cfg setup.py versioneer.py docs/Makefile docs/authors.rst docs/changes.rst docs/cmake-modules.rst docs/conf.py docs/contributing.rst docs/generators.rst docs/hacking.rst docs/history.rst docs/index.rst docs/installation.rst docs/make.bat docs/make_a_release.rst docs/modules.rst docs/skbuild.command.rst docs/skbuild.platform_specifics.rst docs/skbuild.rst docs/skbuild.utils.rst docs/usage.rst docs/cmake-modules/Cython.rst docs/cmake-modules/F2PY.rst docs/cmake-modules/NumPy.rst docs/cmake-modules/PythonExtensions.rst docs/cmake-modules/targetLinkLibrariesWithDynamicLookup.rst scikit_build.egg-info/PKG-INFO scikit_build.egg-info/SOURCES.txt scikit_build.egg-info/dependency_links.txt scikit_build.egg-info/not-zip-safe scikit_build.egg-info/requires.txt scikit_build.egg-info/top_level.txt skbuild/__init__.py skbuild/_version.py skbuild/cmaker.py skbuild/compat.py skbuild/constants.py skbuild/exceptions.py skbuild/setuptools_wrap.py skbuild/command/__init__.py skbuild/command/bdist.py skbuild/command/bdist_wheel.py skbuild/command/build.py skbuild/command/build_ext.py skbuild/command/build_py.py skbuild/command/clean.py skbuild/command/egg_info.py skbuild/command/generate_source_manifest.py skbuild/command/install.py skbuild/command/install_lib.py skbuild/command/install_scripts.py skbuild/command/sdist.py skbuild/command/test.py skbuild/platform_specifics/__init__.py skbuild/platform_specifics/abstract.py skbuild/platform_specifics/bsd.py skbuild/platform_specifics/linux.py skbuild/platform_specifics/osx.py skbuild/platform_specifics/platform_factory.py skbuild/platform_specifics/unix.py skbuild/platform_specifics/windows.py skbuild/resources/cmake/FindCython.cmake skbuild/resources/cmake/FindF2PY.cmake skbuild/resources/cmake/FindNumPy.cmake skbuild/resources/cmake/FindPythonExtensions.cmake skbuild/resources/cmake/UseCython.cmake skbuild/resources/cmake/targetLinkLibrariesWithDynamicLookup.cmake skbuild/utils/__init__.py tests/__init__.py tests/conftest.py tests/coverage.xml tests/pytest_helpers.py tests/test_broken_project.py tests/test_cmakelists_not_in_top_level_dir.py tests/test_cmaker.py tests/test_command_line.py tests/test_distribution.py tests/test_hello_cpp.py tests/test_hello_cython.py tests/test_hello_pure.py tests/test_include_exclude_data.py tests/test_issue274_support_default_package_dir.py tests/test_issue274_support_one_package_without_package_dir.py tests/test_issue284_build_ext_inplace.py tests/test_issue334_configure_cmakelists_non_cp1252_encoding.py tests/test_issue335_support_cmake_source_dir.py tests/test_issue342_cmake_osx_args_in_setup.py tests/test_issue352_isolated_environment_support.py tests/test_issue401_sdist_with_symlinks.py tests/test_manifest_in.py tests/test_outside_project_root.py tests/test_platform.py tests/test_setup.py tests/test_skbuild.py tests/test_skbuild_variable.py tests/test_utils.py tests/samples/cmakelists-not-in-top-level-dir/setup.py tests/samples/cmakelists-not-in-top-level-dir/hello/CMakeLists.txt tests/samples/cmakelists-not-in-top-level-dir/hello/__init__.py tests/samples/cmakelists-not-in-top-level-dir/hello/__main__.py tests/samples/cmakelists-not-in-top-level-dir/hello/_hello.cxx tests/samples/fail-hello-with-compile-error/CMakeLists.txt tests/samples/fail-hello-with-compile-error/setup.py tests/samples/fail-hello-with-compile-error/hello/CMakeLists.txt tests/samples/fail-hello-with-compile-error/hello/__init__.py tests/samples/fail-hello-with-compile-error/hello/__main__.py tests/samples/fail-hello-with-compile-error/hello/_hello.cxx tests/samples/fail-outside-project-root/CMakeLists.txt tests/samples/fail-outside-project-root/dummy tests/samples/fail-outside-project-root/setup.py tests/samples/fail-outside-project-root/other_project/CMakeLists.txt tests/samples/fail-unless-skbuild-set/CMakeLists.txt tests/samples/fail-unless-skbuild-set/setup.py tests/samples/fail-with-fatal-error-cmakelists/CMakeLists.txt tests/samples/fail-with-fatal-error-cmakelists/setup.py tests/samples/fail-with-syntax-error-cmakelists/CMakeLists.txt tests/samples/fail-with-syntax-error-cmakelists/setup.py tests/samples/hello-cpp/CMakeLists.txt tests/samples/hello-cpp/bonjourModule.py tests/samples/hello-cpp/setup.py tests/samples/hello-cpp/bonjour/__init__.py tests/samples/hello-cpp/bonjour/data/ciel.txt tests/samples/hello-cpp/bonjour/data/soleil.txt tests/samples/hello-cpp/bonjour/data/terre.txt tests/samples/hello-cpp/hello/CMakeLists.txt tests/samples/hello-cpp/hello/__init__.py tests/samples/hello-cpp/hello/__main__.py tests/samples/hello-cpp/hello/_hello.cxx tests/samples/hello-cython/CMakeLists.txt tests/samples/hello-cython/setup.py tests/samples/hello-cython/hello/CMakeLists.txt tests/samples/hello-cython/hello/__init__.py tests/samples/hello-cython/hello/__main__.py tests/samples/hello-cython/hello/_hello.pyx tests/samples/hello-no-language/CMakeLists.txt tests/samples/hello-no-language/setup.py tests/samples/hello-pure/setup.py tests/samples/hello-pure/hello/__init__.py tests/samples/issue-274-support-default-package-dir/CMakeLists.txt tests/samples/issue-274-support-default-package-dir/setup.py tests/samples/issue-274-support-default-package-dir/hello_tests/__init__.py tests/samples/issue-274-support-default-package-dir/src/hello/__init__.py tests/samples/issue-274-support-one-package-without-package-dir/CMakeLists.txt tests/samples/issue-274-support-one-package-without-package-dir/setup.py tests/samples/issue-274-support-one-package-without-package-dir/hello/__init__.py tests/samples/issue-274-support-one-package-without-package-dir/hello_tests/__init__.py tests/samples/issue-284-build-ext-inplace/CMakeLists.txt tests/samples/issue-284-build-ext-inplace/setup.py tests/samples/issue-284-build-ext-inplace/hello/__init__.py tests/samples/issue-284-build-ext-inplace/hello/_hello_ext.cxx tests/samples/issue-284-build-ext-inplace/hello/_hello_sk.cxx tests/samples/issue-334-configure-cmakelist-non-cp1252-encoding/CMakeLists.txt tests/samples/issue-334-configure-cmakelist-non-cp1252-encoding/setup.py tests/samples/issue-335-support-cmake-source-dir/CMakeLists.txt tests/samples/issue-335-support-cmake-source-dir/wrapping/python/CMakeLists.txt tests/samples/issue-335-support-cmake-source-dir/wrapping/python/setup.py tests/samples/issue-335-support-cmake-source-dir/wrapping/python/hello/__init__.py tests/samples/issue-401-sdist-with-symlinks/MANIFEST.in tests/samples/issue-401-sdist-with-symlinks/README tests/samples/issue-401-sdist-with-symlinks/VERSION tests/samples/issue-401-sdist-with-symlinks/VERSION.actual tests/samples/issue-401-sdist-with-symlinks/setup.py tests/samples/manifest-in/MANIFEST.in tests/samples/manifest-in/not_included.txt tests/samples/manifest-in/setup.py tests/samples/manifest-in/hello/__init__.py tests/samples/test-hide-listing/CMakeLists.txt tests/samples/test-hide-listing/bonjourModule.py tests/samples/test-hide-listing/setup.py tests/samples/test-hide-listing/bonjour/__init__.py tests/samples/test-hide-listing/bonjour/data/ciel.txt tests/samples/test-hide-listing/bonjour/data/soleil.txt tests/samples/test-hide-listing/bonjour/data/terre.txt tests/samples/test-hide-listing/hello/CMakeLists.txt tests/samples/test-hide-listing/hello/__init__.py tests/samples/test-hide-listing/hello/__main__.py tests/samples/test-include-exclude-data/CMakeLists.txt tests/samples/test-include-exclude-data/MANIFEST.in tests/samples/test-include-exclude-data/setup.py tests/samples/test-include-exclude-data-with-base/CMakeLists.txt tests/samples/test-include-exclude-data-with-base/MANIFEST.in tests/samples/test-include-exclude-data-with-base/setup.py tests/samples/test-include-exclude-data-with-base/src/hello/__init__.py tests/samples/test-include-exclude-data-with-base/src/hello/hello_include_from_manifest.txt tests/samples/test-include-exclude-data-with-base/src/hello/data/subdata/hello_data1_include_from_manifest.txt tests/samples/test-include-exclude-data-with-base/src/hello/data/subdata/hello_data2_include_from_manifest.txt tests/samples/test-include-exclude-data-with-base/src/hello/data/subdata/hello_data3_include_from_manifest_and_exclude_from_manifest.txt tests/samples/test-include-exclude-data-with-base/src/hello/data/subdata/hello_data4_include_from_manifest_and_exclude_from_setup.txt tests/samples/test-include-exclude-data-with-base/src/hello2/__init__.py tests/samples/test-include-exclude-data-with-base/src/hello2/hello2_include_from_manifest.txt tests/samples/test-include-exclude-data-with-base/src/hello2/data2/subdata2/hello2_data1_include_from_manifest.txt tests/samples/test-include-exclude-data-with-base/src/hello2/data2/subdata2/hello2_data2_include_from_manifest.txt tests/samples/test-include-exclude-data-with-base/src/hello2/data2/subdata2/hello2_data3_include_from_manifest_and_exclude_from_manifest.txt tests/samples/test-include-exclude-data-with-base/src/hello2/data2/subdata2/hello2_data4_include_from_manifest_and_exclude_from_setup.txt tests/samples/test-include-exclude-data/hello/__init__.py tests/samples/test-include-exclude-data/hello/hello_include_from_manifest.txt tests/samples/test-include-exclude-data/hello/data/subdata/hello_data1_include_from_manifest.txt tests/samples/test-include-exclude-data/hello/data/subdata/hello_data2_include_from_manifest.txt tests/samples/test-include-exclude-data/hello/data/subdata/hello_data3_include_from_manifest_and_exclude_from_manifest.txt tests/samples/test-include-exclude-data/hello/data/subdata/hello_data4_include_from_manifest_and_exclude_from_setup.txt tests/samples/test-include-exclude-data/hello2/__init__.py tests/samples/test-include-exclude-data/hello2/hello2_include_from_manifest.txt tests/samples/test-include-exclude-data/hello2/data2/subdata2/hello2_data1_include_from_manifest.txt tests/samples/test-include-exclude-data/hello2/data2/subdata2/hello2_data2_include_from_manifest.txt tests/samples/test-include-exclude-data/hello2/data2/subdata2/hello2_data3_include_from_manifest_and_exclude_from_manifest.txt tests/samples/test-include-exclude-data/hello2/data2/subdata2/hello2_data4_include_from_manifest_and_exclude_from_setup.txt