File: __main__.py

package info (click to toggle)
python-vispy 0.16.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,112 kB
  • sloc: python: 61,648; javascript: 6,800; ansic: 2,104; makefile: 141; sh: 6
file content (13 lines) | stat: -rw-r--r-- 195 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13

from __future__ import print_function, division

import os
import sys
from make import Maker

START_DIR = os.path.abspath(os.getcwd())

try:
    Maker(sys.argv)
finally:
    os.chdir(START_DIR)