资 源 简 介
Python Builer has moved to github: https://github.com/pybuilder/pybuilder/
Please checkout the documentation at http://pybuilder.github.io
Python Builder is a software build tool written in 100% pure Python and mainly targets Python applications.
Python Builder is based on the concept of dependency based programming but also comes along with powerful plugin mechanism that allows the construction of build life cycles similar to those known from other famous (Java) build tools.
Python Builder emphasizes simplicity. If you want to build a pure Python project and use the recommended directory layout, all you have to do is create a file build.py with the following content:
```
from pythonbuilder.core import use_plugin
use_plugin("python.core")
use_plugin("python.unittest")
use_plugin("python.coverage")
use_plugin("python.distutils")
default_task = "publish"
```
I