Updated to depend on newly packaged piezo package.
#
# calibcant - tools for thermally calibrating AFM cantilevers
#
-# Copyright (C) 2007,2008, William Trevor King
+# Copyright (C) 2007-2009 William Trevor King
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
import numpy
import time
import data_logger
-import z_piezo_utils
+import piezo.z_piezo_utils as z_piezo_utils
import FFT_tools
import linfit
from calibcant_bump_analyze import bump_analyze
#
# calibcant - tools for thermally calibrating AFM cantilevers
#
-# Copyright (C) 2007,2008, William Trevor King
+# Copyright (C) 2007-2009 William Trevor King
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
import numpy
import time
-import z_piezo_utils
+import piezo.z_piezo_utils as z_piezo_utils
from splittable_kwargs import splittableKwargsFunction, \
make_splittable_kwargs_function
import FFT_tools
# calibcant - tools for thermally calibrating AFM cantilevers
#
-# Copyright (C) 2007,2008, William Trevor King
+# Copyright (C) 2007-2009 William Trevor King
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
import config
-VERSION="0.3"
+VERSION="0.4"
# handle extra verbose input modules, only imported if we need them
_flush_plot = None
# calibcant - tools for thermally calibrating AFM cantilevers
#
-# Copyright (C) 2007,2008, William Trevor King
+# Copyright (C) 2007-2009 William Trevor King
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
"""Define some variables to configure the package for a particular lab
and workflow."""
-import z_piezo
+import piezo.z_piezo as z_piezo
DEFAULT_TEMP = 22 # assume 22 deg C
LOG_DATA = True # quietly grab all real-world data and log to LOG_DIR
classifiers = filter(None, classifiers.split("\n")),
py_modules = ['ez_setup'],
packages = find_packages(),
+ dependency_links = [
+ "http://www.physics.drexel.edu/~wking/code/python/"
+ ],
+ install_requires = ['piezo >= 0.1'],
)
# use packages to include subdirectory packages