Skip to content
Snippets Groups Projects
buildout.cfg 981 B
Newer Older
# Main section
# Accessible from the command line using 'buildout key=value'
# e.g. buildout parts=build_pkgs will specify build_pkgs
[buildout]
develop = build/recipes/setup_to_meta build/recipes/build_pkgs build/recipes/test_recipes

Nathan Hertz's avatar
Nathan Hertz committed
# 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}`
Nathan Hertz's avatar
Nathan Hertz committed
# Specify 'all' to build all packages (this takes a LONG time)
Nathan Hertz's avatar
Nathan Hertz committed
recipe = build_pkgs
# Section for generating meta.yaml files
[gen_metadata]
recipe = setup_to_meta