INSTALLATION
============

Unzip and untar this archive at the root of the Quisk directory;
that is, where the file quisk.py is located.  In this example,
the archive is named "charleston" and the path to quisk.py is
/home/jim/quisk/quisk.py.

  mv charleston-1.0.tar.gz  /home/jim/quisk
  cd /home/jim/quisk
  gunzip charleston-1.0.tar.gz
  tar xf charleston-1.0.tar
  # Make sure that directory charleston-1.0 exists before removing the archive.
  rm charleston-1.0.tar		# tar file is no longer needed
  mv charleston-1.0 charleston	# change to shorter name

You now have a new Python package named charleston.  To import from this package:

  from charleston import quisk_widgets
  from charleston import quisk_hardware

(note: there is a sample .quisk_conf.py in the charleston directory that already has the above two ines in it, along with other charleston parameters pre-configured)

