Changeset 125


Ignore:
Timestamp:
03/24/09 13:00:13 (7 years ago)
Author:
mmckerns
Message:

added authors, license, copyright, and etc information

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r124 r125  
    11#--------------------------------------------------- 
    2 SOURCES =  
     2VERSION = 0.1a1 
    33#--------------------------------------------------- 
    44 
     
    77doc: 
    88        epydoc --config mystic.epydoc 
    9         mv -f shared,opt html 
     9        mkdir html 
     10        mv -f shared,opt html/mystic-${VERSION} 
    1011 
    1112clean: 
  • mystic/mystic/__init__.py

    r124 r125  
    115115Solvers are found here:: 
    116116    `mystic.mystic.differential_evolution`, `mystic.mystic.scipy_optimize` 
     117 
     118See http://dev.danse.us/trac/mystic for more information. 
    117119""" 
    118120__version__ = '0.1a1' 
    119 __author__ = 'Patrick Hung & Mike McKerns' 
     121__author__ = 'Mike McKerns, Patrick Hung' 
     122 
     123__license__ = """ 
     124This software is part of the open-source DANSE project at the California 
     125Institute of Technology, and is available subject to the conditions and 
     126terms laid out below. By downloading and using this software you are 
     127agreeing to the following conditions. 
     128 
     129Redistribution and use in source and binary forms, with or without 
     130modification, are permitted provided that the following conditions 
     131are met:: 
     132 
     133    - Redistribution of source code must retain the above copyright 
     134      notice, this list of conditions and the following disclaimer. 
     135 
     136    - Redistribution in binary form must reproduce the above copyright 
     137      notice, this list of conditions and the following disclaimer in the 
     138      documentations and/or other materials provided with the distribution. 
     139 
     140    - Neither the name of the California Institute of Technology nor 
     141      the names of its contributors may be used to endorse or promote 
     142      products derived from this software without specific prior written 
     143      permission. 
     144 
     145THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
     146"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 
     147TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 
     148PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 
     149CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
     150EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
     151PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 
     152OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
     153WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
     154OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 
     155ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     156 
     157Copyright (c) 2009 California Institute of Technology. All rights reserved. 
     158 
     159 
     160If you use this software to do productive scientific research that leads to 
     161publication, we ask that you acknowledge use of the software by citing the 
     162following paper in your publication:: 
     163 
     164    "mystic: a simple model-independent inversion framework", 
     165     Michael McKerns, Patrick Hung, and Michael Aivazis, unpublished; 
     166     http://dev.danse.us/trac/mystic 
     167 
     168""" 
    120169 
    121170# solvers 
     
    129178from tools import * 
    130179 
     180def copyright(): 
     181    """print copyright and reference""" 
     182    print __license__[-439:] 
     183    return 
     184 
    131185# end of file 
  • mystic/mystic/scemtools.py

    r124 r125  
    1212uncertainty assessment of hydrologic model parameters, 
    1313WATER RESOURCES RESEARCH, VOL. 39, NO. 8, 1201, doi:10.1029/2002WR001642, 2003  
    14 Link: http://www.agu.org/pubs/crossref/2003/2002WR001642.shtml 
     14http://www.agu.org/pubs/crossref/2003/2002WR001642.shtml 
    1515 
    1616[2] Vrugt JA, Nuallain , Robinson BA, Bouten W, Dekker SC, Sloot PM 
     
    1818environmental models, 
    1919Computers & Geosciences, Vol. 32, No. 8. (October 2006), pp. 1139-1155. 
    20 Link: http://www.science.uva.nl/research/scs/papers/archive/Vrugt2006b.pdf 
     20http://www.science.uva.nl/research/scs/papers/archive/Vrugt2006b.pdf 
    2121 
    2222""" 
  • mystic/setup.py

    r124 r125  
    1414    name="mystic", 
    1515    version="0.1a1", 
    16     author="Patrick Hung & Mike McKerns" 
     16    author="Mike McKerns, Patrick Hung" 
    1717    maintainer="Mike McKerns", 
    1818    maintainer_email="mmckerns@caltech.edu", 
Note: See TracChangeset for help on using the changeset viewer.