Skip to content

Commit

Permalink
Pushing for v0.0.1 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdill committed Jul 7, 2014
1 parent f377278 commit a9512db
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion qt_apps/XPDPipelineDemo.py
Expand Up @@ -14,8 +14,8 @@
import numpy as np
from collections import OrderedDict
from vistools.qt_widgets.OneDimStack import OneDimStackMainWindow
from nsls2.binary import read_binary
from nsls2 import core
from nsls2.io.binary import read_binary


class data_gen_2d(object):
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
@@ -0,0 +1,2 @@
[easy_install]

4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -61,5 +61,7 @@
name='vistools',
version=FULLVERSION,
author='Brookhaven National Lab',
packages=['vistools', 'vistools.qt_widgets'],
packages=['vistools', 'vistools.qt_widgets',
'vistools.backend', 'vistools.images',
'vistools.messenger', 'vistools.qt_widgets'],
)
1 change: 1 addition & 0 deletions vistools/images/__init__.py
@@ -0,0 +1 @@
__author__ = 'edill'
4 changes: 2 additions & 2 deletions vistools/qt_widgets/OneDimStack.py
Expand Up @@ -128,8 +128,8 @@ def replot(self):
else:
self._data_lines[data_key].set_data(
x + counter * self._horz_offset,
y + counter * self._vert_offset,
label=data_key)
y + counter * self._vert_offset)
self._data_lines[data_key].set_label(data_key)
# compute the color for the line
color = rgba.to_rgba(x=(counter / num_datasets))
# set the color for the line
Expand Down
2 changes: 1 addition & 1 deletion vistools/qt_widgets/stack_scanner.py
Expand Up @@ -2,7 +2,7 @@
unicode_literals)
import six

from vistools import images
from ..images import images

# grab the version from mpl which has done the work of smoothing over
# the differences
Expand Down

0 comments on commit a9512db

Please sign in to comment.