NumPy Distutils - Users Guide
SciPy structure
Currently SciPy project consists of two packages:
- NumPy — it provides packages like:
- numpy.distutils - extension to Python distutils
- numpy.f2py - a tool to bind Fortran/C codes to Python
- numpy.core - future replacement of Numeric and numarray packages
- numpy.lib - extra utility functions
- numpy.testing - numpy-style tools for unit testing
- etc
- SciPy — a collection of scientific tools for Python.
The aim of this document is to describe how to add new tools to SciPy.
Requirements for SciPy packages
SciPy consists of Python packages, called SciPy packages, that are available to Python users via the scipy namespace. Each SciPy package may contain other SciPy packages. And so on. Therefore, the SciPy directory tree is a tree of packages with arbitrary depth and width. Any SciPy package may depend on NumPy packages but the dependence on other SciPy packages should be kept minimal or zero.
A SciPy package contains, in addition to its sources, the following files and directories:
-
setup.py— building script -
__init__.py— package initializer -
tests/— directory of unittests
Their contents are described below.
The setup.py file
In order to add a Python package to SciPy, its build script (setup.py) must meet certain requirements. The most important requirement is that the package define a configuration(parent_package='',top_path=None) function which returns a dictionary suitable for passing to numpy.distutils.core.setup(..). To simplify the construction of this dictionary, numpy.distutils.misc_util provides the Configuration class, described below.
SciPy pure Python package example
Below is an example of a minimal setup.py file for a pure SciPy package:
#!/usr/bin/env python
def configuration(parent_package='',top_path=None):
from numpy.distutils.misc_util import Configuration
config = Configuration('mypackage',parent_package,top_path)
return config
if __name__ == "__main__":
from numpy.distutils.core import setup
#setup(**configuration(top_path='').todict())
setup(configuration=configuration)
The arguments of the configuration function specify the name of parent SciPy package (parent_package) and the directory location of the main setup.py script (top_path). These arguments, along with the name of the current package, should be passed to the Configuration constructor.
The Configuration constructor has a fourth optional argument, package_path, that can be used when package files are located in a different location than the directory of the setup.py file.
Remaining Configuration arguments are all keyword arguments that will be used to initialize attributes of Configuration instance. Usually, these keywords are the same as the ones that setup(..) function would expect, for example, packages, ext_modules, data_files, include_dirs, libraries, headers, scripts, package_dir, etc. However, the direct specification of these keywords is not recommended as the content of these keyword arguments will not be processed or checked for the consistency of SciPy building system.
Finally, Configuration has .todict() method that returns all the configuration data as a dictionary suitable for passing on to the setup(..) function.
Configuration instance attributes
In addition to attributes that can be specified via keyword arguments to Configuration constructor, Configuration instance (let us denote as config) has the following attributes that can be useful in writing setup scripts:
-
config.name- full name of the current package. The names of parent packages can be extracted asconfig.name.split('.'). -
config.local_path- path to the location of currentsetup.pyfile. -
config.top_path- path to the location of mainsetup.pyfile.
Configuration instance methods
-
config.todict()— returns configuration dictionary suitable for passing tonumpy.distutils.core.setup(..)function. -
config.paths(*paths) --- applies ``glob.glob(..)to items ofpathsif necessary. Fixespathsitem that is relative toconfig.local_path. -
config.get_subpackage(subpackage_name,subpackage_path=None)— returns a list of subpackage configurations. Subpackage is looked in the current directory under the namesubpackage_namebut the path can be specified also via optionalsubpackage_pathargument. Ifsubpackage_nameis specified asNonethen the subpackage name will be taken the basename ofsubpackage_path. Any*used for subpackage names are expanded as wildcards. -
config.add_subpackage(subpackage_name,subpackage_path=None)— add SciPy subpackage configuration to the current one. The meaning and usage of arguments is explained above, seeconfig.get_subpackage()method. -
config.add_data_files(*files)— prependfilestodata_fileslist. Iffilesitem is a tuple then its first element defines the suffix of where data files are copied relative to package installation directory and the second element specifies the path to data files. By default data files are copied under package installation directory. For example,config.add_data_files('foo.dat', ('fun',['gun.dat','nun/pun.dat','/tmp/sun.dat']), 'bar/car.dat'. '/full/path/to/can.dat', )will install data files to the following locations
<installation path of config.name package>/ foo.dat fun/ gun.dat pun.dat sun.dat bar/ car.dat can.datPath to data files can be a function taking no arguments and returning path(s) to data files – this is a useful when data files are generated while building the package. (XXX: explain the step when this function are called exactly)
-
config.add_data_dir(data_path)— add directorydata_pathrecursively todata_files. The whole directory tree starting atdata_pathwill be copied under package installation directory. Ifdata_pathis a tuple then its first element defines the suffix of where data files are copied relative to package installation directory and the second element specifies the path to data directory. By default, data directory are copied under package installation directory under the basename ofdata_path. For example,config.add_data_dir('fun') # fun/ contains foo.dat bar/car.dat config.add_data_dir(('sun','fun')) config.add_data_dir(('gun','/full/path/to/fun'))will install data files to the following locations
<installation path of config.name package>/ fun/ foo.dat bar/ car.dat sun/ foo.dat bar/ car.dat gun/ foo.dat bar/ car.dat -
config.add_include_dirs(*paths)— prependpathstoinclude_dirslist. This list will be visible to all extension modules of the current package. -
config.add_headers(*files)— prependfilestoheaderslist. By default, headers will be installed under<prefix>/include/pythonX.X/<config.name.replace('.','/')>/directory. Iffilesitem is a tuple then it’s first argument specifies the installation suffix relative to<prefix>/include/pythonX.X/path. This is a Python distutils method; its use is discouraged for NumPy and SciPy in favour ofconfig.add_data_files(*files). -
config.add_scripts(*files)— prependfilestoscriptslist. Scripts will be installed under<prefix>/bin/directory. -
config.add_extension(name,sources,**kw)— create and add anExtensioninstance toext_moduleslist. The first argumentnamedefines the name of the extension module that will be installed underconfig.namepackage. The second argument is a list of sources.add_extensionmethod takes also keyword arguments that are passed on to theExtensionconstructor. The list of allowed keywords is the following:include_dirs,define_macros,undef_macros,library_dirs,libraries,runtime_library_dirs,extra_objects,extra_compile_args,extra_link_args,export_symbols,swig_opts,depends,language,f2py_options,module_dirs,extra_info,extra_f77_compile_args,extra_f90_compile_args.Note that
config.pathsmethod is applied to all lists that may contain paths.extra_infois a dictionary or a list of dictionaries that content will be appended to keyword arguments. The listdependscontains paths to files or directories that the sources of the extension module depend on. If any path in thedependslist is newer than the extension module, then the module will be rebuilt.The list of sources may contain functions (‘source generators’) with a pattern
def <funcname>(ext, build_dir): return <source(s) or None>. IffuncnamereturnsNone, no sources are generated. And if theExtensioninstance has no sources after processing all source generators, no extension module will be built. This is the recommended way to conditionally define extension modules. Source generator functions are called by thebuild_srccommand ofnumpy.distutils.For example, here is a typical source generator function:
def generate_source(ext,build_dir): import os from distutils.dep_util import newer target = os.path.join(build_dir,'somesource.c') if newer(target,__file__): # create target file return targetThe first argument contains the Extension instance that can be useful to access its attributes like
depends,sources, etc. lists and modify them during the building process. The second argument gives a path to a build directory that must be used when creating files to a disk. -
config.add_library(name, sources, **build_info)— add a library tolibrarieslist. Allowed keywords arguments aredepends,macros,include_dirs,extra_compiler_args,f2py_options,extra_f77_compile_args,extra_f90_compile_args. See.add_extension()method for more information on arguments. -
config.have_f77c()— return True if Fortran 77 compiler is available (read: a simple Fortran 77 code compiled successfully). -
config.have_f90c()— return True if Fortran 90 compiler is available (read: a simple Fortran 90 code compiled successfully). -
config.get_version()— return version string of the current package,Noneif version information could not be detected. This methods scans files__version__.py,<packagename>_version.py,version.py,__svn_version__.pyfor string variablesversion,__version__,<packagename>_version. -
config.make_svn_version_py()— appends a data function todata_fileslist that will generate__svn_version__.pyfile to the current package directory. The file will be removed from the source directory when Python exits. -
config.get_build_temp_dir()— return a path to a temporary directory. This is the place where one should build temporary files. -
config.get_distribution()— return distutilsDistributioninstance. -
config.get_config_cmd()— returnsnumpy.distutilsconfig command instance. -
config.get_info(*names)—
Template files
XXX: Describe how files with extensions .f.src, .pyf.src, .c.src, etc. are pre-processed by the build_src command.
Useful functions in numpy.distutils.misc_util
-
get_numpy_include_dirs()— return a list of NumPy base include directories. NumPy base include directories contain header files such asnumpy/arrayobject.h,numpy/funcobject.hetc. For installed NumPy the returned list has length 1 but when building NumPy the list may contain more directories, for example, a path toconfig.hfile thatnumpy/base/setup.pyfile generates and is used bynumpyheader files. -
append_path(prefix,path)— smart appendpathtoprefix. -
gpaths(paths, local_path='')— apply glob to paths and prependlocal_pathif needed. -
njoin(*path)— join pathname components + convert/-separated path toos.sep-separated path and resolve..,.from paths. Ex.njoin('a',['b','./c'],'..','g') -> os.path.join('a','b','g'). -
minrelpath(path)— resolves dots inpath. -
rel_path(path, parent_path)— returnpathrelative toparent_path. -
def get_cmd(cmdname,_cache={})— returnsnumpy.distutilscommand instance. all_strings(lst)has_f_sources(sources)has_cxx_sources(sources)-
filter_sources(sources)— returnc_sources, cxx_sources, f_sources, fmodule_sources get_dependencies(sources)is_local_src_dir(directory)get_ext_source_files(ext)get_script_files(scripts)get_lib_source_files(lib)get_data_files(data)-
dot_join(*args)— join non-zero arguments with a dot. -
get_frame(level=0)— return frame object from call stack with given level. cyg2win32(path)-
mingw32()— returnTruewhen using mingw32 environment. -
terminal_has_colors(),red_text(s),green_text(s),yellow_text(s),blue_text(s),cyan_text(s) -
get_path(mod_name,parent_path=None)— return path of a module relative to parent_path when given. Handles also__main__and__builtin__modules. -
allpath(name)— replaces/withos.sepinname. -
cxx_ext_match,fortran_ext_match,f90_ext_match,f90_module_name_match
numpy.distutils.system_info module
get_info(name,notfound_action=0)combine_paths(*args,**kws)show_all()
numpy.distutils.cpuinfo module
cpuinfo
numpy.distutils.log module
set_verbosity(v)
numpy.distutils.exec_command module
get_pythonexe()find_executable(exe, path=None)exec_command( command, execute_in='', use_shell=None, use_tee=None, **env )
The __init__.py file
The header of a typical SciPy __init__.py is:
"""
Package docstring, typically with a brief description and function listing.
"""
# py3k related imports
from __future__ import division, print_function, absolute_import
# import functions into module namespace
from .subpackage import *
...
__all__ = [s for s in dir() if not s.startswith('_')]
from numpy.testing import Tester
test = Tester().test
bench = Tester().bench
Note that NumPy submodules still use a file named info.py in which the module docstring and __all__ dict are defined. These files will be removed at some point.
Extra features in NumPy Distutils
Specifying config_fc options for libraries in setup.py script
It is possible to specify config_fc options in setup.py scripts. For example, using
- config.add_library(‘library’,
- sources=[…], config_fc={‘noopt’:(__file__,1)})
will compile the library sources without optimization flags.
It’s recommended to specify only those config_fc options in such a way that are compiler independent.
Getting extra Fortran 77 compiler options from source
Some old Fortran codes need special compiler options in order to work correctly. In order to specify compiler options per source file, numpy.distutils Fortran compiler looks for the following pattern:
CF77FLAGS(<fcompiler type>) = <fcompiler f77flags>
in the first 20 lines of the source and use the f77flags for specified type of the fcompiler (the first character C is optional).
TODO: This feature can be easily extended for Fortran 90 codes as well. Let us know if you would need such a feature.
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
https://docs.scipy.org/doc/numpy-1.16.1/reference/distutils_guide.html