Required: 
SciPy      >= 0.12.0 
matplotlib >= 1.2.0

Tested under:
  Python 3.5.1 with NumPy 1.8.2, SciPy 0.13.3, matplotlib 1.3.1 (Ubuntu 14.04 LTS)



Instructions:  
    

* To use python codes:
  - One way is to update your PYTHONPATH variable. For example, if the pyHyperMesh package is in the directory ~/tmp/pyHyperMesh-0.0.4, you have to do
      export PYTHONPATH=$PYTHONPATH:~/tmp/pyHyperMesh-0.0.4

  - Second way i to add the folowing line in your python script file or directly in ipython:
      import sys;sys.path.insert(1,'<CHANGE WITH PATH TO>/pyHyperMesh-0.0.4')

  - Another way is to create a shellscript which modifies your PYTHONPATH variable adding the local path of your pyHyperMesh package and to source it.
    For example, if pyHyperMesh package is in the directory ~/tmp/pyHyperMesh-0.0.4, you can create a script named init.sh which contains

      #!/bin/bash
      export PYTHONPATH=$PYTHONPATH:~/tmp/pyHyperMesh-0.0.4

    and you need to source it
      source init.sh
