# Main section # Accessible from the command line using 'buildout key=value' # e.g. buildout parts=build_pkgs will specify build_pkgs # as a part that should be installed [buildout] develop = build/recipes/setup_to_meta build/recipes/build_pkgs build/recipes/test_recipes # Section for testing buildout recipes # Depends on `name` in [buildout] to specify which recipe to test # Specify name via command line using `buildout parts=test name={name}` # Specify 'all' to test all recipes [test] recipe = test_recipes name = ${buildout:name} # Section for building internal tools using conda # Depends on gen_metadata # Depends on `name` in [buildout] to specify which package to install # Specify name via command line using # `buildout parts=build_pkgs name={name}` # Specify 'all' to build all packages (this takes a LONG time) [build_pkgs] => gen_metadata recipe = build_pkgs name = ${buildout:name} # Section for generating meta.yaml files [gen_metadata] recipe = setup_to_meta