forked from mach0/mutant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
22 lines (18 loc) · 697 Bytes
/
__init__.py
File metadata and controls
22 lines (18 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""mutant - MUlti Temporal ANalysis Tool
begin : 2014/06/16
copyright : (c) 2014- by Werner Macho
email : werner.macho@gmail.com
based on valuetool
copyright : (C) 2008-2010 by G. Picard
.. note:: This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
"""
#from __future__ import absolute_import
__author__ = 'werner.macho@gmail.com'
__date__ = '2014/06/16'
__copyright__ = 'Copyright 2014, Werner Macho'
def classFactory(iface):
from .mutant import Mutant
return Mutant(iface)