mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-02 05:04:20 -04:00
13 lines
397 B
Python
Executable File
13 lines
397 B
Python
Executable File
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
from __future__ import (unicode_literals, division, absolute_import,
|
|
print_function)
|
|
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = '2013, Kovid Goyal <kovid at kovidgoyal.net>'
|
|
|
|
import os, subprocess
|
|
base = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
|
|
subprocess.check_call(['python', 'setup.py', 'gui'], cwd=base)
|
|
|