diff --git a/ekgplotter/ekgplotter/main.py b/ekgplotter/ekgplotter/main.py index 34043a8..247e02a 100644 --- a/ekgplotter/ekgplotter/main.py +++ b/ekgplotter/ekgplotter/main.py @@ -1,3 +1,10 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + + +from __future__ import absolute_import + + import pyqtgraph as pg import select import socket @@ -9,7 +16,6 @@ from PyQt4.QtCore import QBuffer, QByteArray, QIODevice from collections import deque -# -*- coding: utf-8 -*- """This module implements the standalone filtering tool in the chaosc framework. @@ -41,8 +47,6 @@ transcoding.py file. # # Copyright (C) 2012-2014 Stefan Kögl -from __future__ import absolute_import - import atexit import sys, argparse diff --git a/ekgplotter/setup.py b/ekgplotter/setup.py index 2a6892a..2d45c49 100644 --- a/ekgplotter/setup.py +++ b/ekgplotter/setup.py @@ -30,7 +30,7 @@ setup( # predefined extension points, e.g. for plugins entry_points = """ [console_scripts] - ekgplot = ekgplotter.main:main + ekgplotter = ekgplotter.main:main """, # pypi metadata author = "Stefan Kögl",