mirror of
https://github.com/vale981/jobmanager
synced 2025-03-05 09:51:38 -05:00
Added usage/testing information.
This commit is contained in:
parent
bc2e40992b
commit
03ea0fee66
3 changed files with 12 additions and 1 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
3
jobmanager/jm_version.py
Normal 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"
|
Loading…
Add table
Reference in a new issue