12 lines
208 B
Python
12 lines
208 B
Python
|
#!/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()
|