| Home | Trees | Indices | Help |
|---|
|
|
1 # -*- coding: utf-8 -*-
2
3 # Written (W) 2008-2012 Christian Widmer
4 # Written (W) 2008-2010 Cheng Soon Ong
5 # Written (W) 2012-2013 Daniel Blanchard, dblanchard@ets.org
6 # Copyright (C) 2008-2012 Max-Planck-Society, 2012-2013 ETS
7
8 # This file is part of Grid Map.
9
10 # Grid Map is free software: you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation, either version 3 of the License, or
13 # (at your option) any later version.
14
15 # Grid Map is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19
20 # You should have received a copy of the GNU General Public License
21 # along with Grid Map. If not, see <http://www.gnu.org/licenses/>.
22 '''
23 Grid Map provides wrappers that simplify submission and collection of jobs,
24 in a more 'pythonic' fashion.
25
26 @author: Christian Widmer
27 @author: Cheng Soon Ong
28 @author: Dan Blanchard (dblanchard@ets.org)
29 '''
30
31 from __future__ import absolute_import, print_function, unicode_literals
32
33 from .job import Job, process_jobs, grid_map, pg_map
34
35
36 # Version info
37 __version__ = '0.9.3'
38 VERSION = tuple(int(x) for x in __version__.split('.'))
39
40 # For * imports
41 __all__ = ['Job', 'process_jobs', 'grid_map', 'pg_map']
42
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Wed Jul 17 10:46:25 2013 | http://epydoc.sourceforge.net |