From: W. Trevor King Date: Tue, 9 Nov 2010 19:57:30 +0000 (-0500) Subject: Update to depend on data_logger v0.4 (and bump to v0.3). X-Git-Tag: 0.3^0 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=01fcc0bc03fe1fe6c69b7557dc40f0097b56f72a;p=pypiezo.git Update to depend on data_logger v0.4 (and bump to v0.3). --- diff --git a/piezo/__init__.py b/piezo/__init__.py index 4a490d7..25e8469 100644 --- a/piezo/__init__.py +++ b/piezo/__init__.py @@ -21,4 +21,4 @@ # write to Trevor King, Drexel University, Physics Dept., 3141 Chestnut St., # Philadelphia PA 19104, USA. -VERSION = "0.2" +__version__ = '0.3' diff --git a/piezo/z_piezo.py b/piezo/z_piezo.py index f2d9488..42e1572 100644 --- a/piezo/z_piezo.py +++ b/piezo/z_piezo.py @@ -17,7 +17,7 @@ There are a few globals controlling the behavior of the entire module. the figure number for z_piezo pylab figures will be this number + {0,1,..} LOG_RAMPS (default False) save the input and output of any ramps to the LOG_DIR directory - LOG_DIR = '$DEFAULT$/z_piezo' + LOG_DIR = '${DEFAULT}/z_piezo' where the ramp logs are saved to DEFAULT_ZP_CHAN (default 0) output channel controlling the z piezo @@ -32,7 +32,7 @@ TEXT_VERBOSE = False PYLAB_INTERACTIVE_VERBOSE = False BASE_FIG_NUM = 50 LOG_RAMPS = False -LOG_DIR = '$DEFAULT$/z_piezo' +LOG_DIR = '${DEFAULT}/z_piezo' # Hackish defaults for the calibcant.config module DEFAULT_GAIN = 20 # Vpiezo / Voutput diff --git a/piezo/z_piezo_utils.py b/piezo/z_piezo_utils.py index 29002e3..692b9fb 100644 --- a/piezo/z_piezo_utils.py +++ b/piezo/z_piezo_utils.py @@ -3,7 +3,7 @@ PYLAB_INTERACTIVE = True PYLAB_VERBOSE = False BASE_FIG_NUM = 60 LOG_DATA = True -LOG_DIR = '$DEFAULT$/z_piezo_utils' +LOG_DIR = '${DEFAULT}/z_piezo_utils' NULL_STEPS_BEFORE_SINGLE_PT_SWEEP = False SLEEP_DURING_SURF_POS_AQUISITION = False # doesn't help diff --git a/setup.py b/setup.py index 1ffb1d8..5f8cae5 100644 --- a/setup.py +++ b/setup.py @@ -36,16 +36,16 @@ if version < '2.2.3': DistributionMetadata.download_url = None import piezo -VERSION = piezo.VERSION +__version__ = piezo.__version__ doclines = __doc__.split("\n") setup(name="piezo", - version=VERSION, + version=__version__, maintainer="W. Trevor King", maintainer_email="wking@drexel.edu", url = "http://www.physics.drexel.edu/~wking/code/python/", - download_url = "http://www.physics.drexel.edu/~wking/code/python/piezo-%s.tar.gz" % VERSION, + download_url = "http://www.physics.drexel.edu/~wking/code/python/piezo-%s.tar.gz" % __version__, license = "GNU General Public License (GPL)", platforms = ["all"], description = doclines[0], @@ -57,7 +57,7 @@ setup(name="piezo", "http://www.physics.drexel.edu/~wking/code/python/" ], install_requires = ['pycomedi >= 0.2', - 'data_logger >= 0.2', + 'data_logger >= 0.4', 'curses_check_for_keypress'], )