12 lines
210 B
Python
12 lines
210 B
Python
#!/usr/bin/env python
|
|
|
|
import sys
|
|
sys.path.insert(1, '@pythondir@')
|
|
|
|
from bootstrap import Application
|
|
|
|
if __name__ == "__main__":
|
|
app = Application(package="@PACKAGE@", version="@VERSION@")
|
|
app.run()
|
|
|