# write to Trevor King, Drexel University, Physics Dept., 3141 Chestnut St.,
# Philadelphia PA 19104, USA.
-VERSION = "0.2"
+__version__ = '0.3'
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
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
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
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],
"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'],
)