
LICENSE

This package is based on DRMAA python bindings. It is modified so it works
with GridWay DRMAA library and repackaged to be compiled without SGE. License
is the same as the original package, GPL. For more information read attached
LICENSE.txt, this file is the same one as the license that can be found in
DRMAA-python-0.2 package.

Original author: Enrico Sirola <enrico.sirola@statpro.com>


REQUIREMENTS

  * GridWay >= 5.3 with DRMAA support
  * python >= 2.3
  * python development libraries (python-dev in most distributions)


INSTALLATION

$ python setup.py install --install-lib=$GW_LOCATION/lib/python

This command compiles and installs bindings in $GW_LOCATION/lib/python.


USE

Information to use python DRMAA bindings is located in GridWay documentation.
You also have to set python path in you scripts or in the environment.

	DIRECTLY IN THE SCRIPT:
	
	import sys
	sys.path.append("<path_to_gw_installation>/lib/python")
	
	
	ENVIRONMENT VARIABLE:
	
	$ export PYTHONPATH=$GW_LOCATION/lib/python:$PYTHONPATH
	
	You can also set this variable in you profile or bashrc script.
	
	


