## Builder


A build manager.


Usage


``` python
Builder(output_dir="dist")
```


## Parameters


`output_dir: str = ``"dist"`  
Directory for build output.


## Methods

| Name | Description |
|----|----|
| [clean()](#clean) | Remove build artifacts. |
| [run()](#run) | Execute the build. |

------------------------------------------------------------------------


#### clean()


Remove build artifacts.


Usage


``` python
clean()
```


------------------------------------------------------------------------


#### run()


Execute the build.


Usage


``` python
run()
```


##### Returns


`bool`  
True if build succeeded.
