From ed5c535908ab4c226e03e962f59e37703e70a23c Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Mon, 9 Jul 2018 22:44:01 -0400 Subject: [PATCH] Binaries: Introduction --- .../source/binaries_dependencies.rst | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/sphinx_presentation/source/binaries_dependencies.rst b/sphinx_presentation/source/binaries_dependencies.rst index 351d27d..1ca6489 100644 --- a/sphinx_presentation/source/binaries_dependencies.rst +++ b/sphinx_presentation/source/binaries_dependencies.rst @@ -2,4 +2,26 @@ Binaries and Dependencies ************************* +Introduction +------------ +This section discusses the creation of Python packages that contain native +binaries. First, we explain why building Python packages with native binaries +is often necessary or desirable for scientific applications. Next, an overview +of the requirements to build native binaries is provided. Within this the +context, we explain how *scikit-build* and *conda-build* make life easier when +we want to satisfy these requirements. Finally, we conclude with an exercise +where we build a native Python wth native binaries package and analyze the +different stages of the build process. + +Motivation +---------- + +Build Requirements +------------------ + +Scientific Python Build Tools +----------------------------- + +Exercise +--------