Added usage/testing information.

This commit is contained in:
Paul Müller 2014-12-22 18:56:36 +01:00
parent bc2e40992b
commit 03ea0fee66
3 changed files with 12 additions and 1 deletions

View file

@ -2,3 +2,11 @@ jobmanager
========== ==========
easy distributed computing based on the python class SyncManager for remote communication and python module multiprocessing for local parallelism easy distributed computing based on the python class SyncManager for remote communication and python module multiprocessing for local parallelism
### testing
virtualenv --system-site-packages ve_jm
source ve_jm/bin/activate
python setupy.py install
python examples/simple/simple_example.py

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__version__ = "0.1.0" from jm_version import __version__
from .jobmanager import * from .jobmanager import *

3
jobmanager/jm_version.py Normal file
View file

@ -0,0 +1,3 @@
# put this into a separate file so we don't have a problem installing
# with pip (unmet dependencies upon import).
__version__ = "0.1.0"