File: glue

package info (click to toggle)
glueviz 0.14.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 29,280 kB
  • sloc: python: 41,995; makefile: 138; sh: 63
file content (11 lines) | stat: -rwxr-xr-x 256 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python3
__requires__ = 'glue_core==0.14.1'
import sys
import os

from pkg_resources import load_entry_point

os.environ['QT_API'] = 'pyqt5'

if __name__ == '__main__':
    sys.exit(load_entry_point('glue_core==0.14.1', 'gui_scripts', 'glue')())