This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
|
#!/usr/bin/env python
|
|
import sys
|
|
from pathlib import Path, PurePath
|
|
|
|
from negromateweb.builder import Builder
|
|
|
|
builder = Builder(
|
|
Path('../bideoak'),
|
|
Path('../libreto/libreto.pdf'),
|
|
)
|
|
builder.build()
|