Adding a bin file

This commit is contained in:
Olivier Keshavjee 2016-02-06 09:03:12 +01:00
parent c469f262f3
commit 9f0f60067a

13
bin/manuskript Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import sys
realpath = os.path.realpath(__file__)
sys.path.insert(1, os.path.join(os.path.dirname(realpath), '..'))
from manuskript import main
main.run()