Software:Buildout

From HandWiki
Buildout
Developer(s)Jim Fulton (programmer)
Written inPython
Operating systemWindows, POSIX
TypeSoftware development tools
LicenseZope Public License
Website{{{1}}} , PyPI page

Buildout is an open-source software build tool. Buildout is created using the Python programming language. It implements a principle of separation of configuration from the scripts that do the setting up. Buildout is primarily used to download and set up dependencies in Python eggs format of the software being developed or deployed. Recipes for build tasks in any environment can be created, and many are already available.

Major features

  • Configuration files are INI format
  • Support for setuptools and eggs[1]
  • Plugin support through Buildout recipes[2]

Sample configuration

[buildout]
  develop = .
  parts = test

  [test]
  recipe = zc.recipe.testrunner
  eggs = theegg

Notable applications

See also

References

External links