~osomon/phatch/extract-all-metadata

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python

"""Launch script to be used as /usr/bin/phatch."""

# Add here patch if Phatch is not installed somewhere in the PYTHONPATH

# Do NOT change this import!
import phatch

# Let Phatch know we are running from /usr/bin/phatch
# This will ensure CONTEXT['distribute'] = 'package'
from lib import context
context.BIN = True

import app
app.main()