Changeset 706


Ignore:
Timestamp:
08/11/13 16:52:39 (3 years ago)
Author:
mmckerns
Message:

moved mystic.cache to new subpackage klepto; updated LICENSE file

Location:
mystic
Files:
9 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • mystic/LICENSE

    r530 r706  
    1 This software is part of the open-source DANSE project at the California 
     1This software is part of the open-source mystic project at the California 
    22Institute of Technology, and is available subject to the conditions and 
    33terms laid out below. By downloading and using this software you are 
     
    3232ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    3333 
    34 Copyright (c) 2012 California Institute of Technology. All rights reserved. 
     34Copyright (c) 2013 California Institute of Technology. All rights reserved. 
    3535 
  • mystic/cache/__init__.py

    r670 r706  
    1 from _cache import * 
    2 import safe 
    3 import archives 
    4 import keymaps 
     1# backward compatability 
     2from klepto import lru_cache, lfu_cache, mru_cache 
     3from klepto import rr_cache, inf_cache, no_cache 
     4 
     5# end of file 
  • mystic/setup.py

    r681 r706  
    155155    - sympy, version >= 0.6.7 
    156156    - dill, version >= 0.2a.dev 
     157    - klepto, version >= 0.1a.dev 
    157158 
    158159Optional requirements:: 
     
    174175Many of the included examples are standard optimization test problems. 
    175176 
    176 Instructions on building a new model are in `mystic.models.abstract_model`. 
     177Instr1ctions on building a new model are in `mystic.models.abstract_model`. 
    177178Mystic provides base classes for two types of models:: 
    178179 
     
    302303sympy_version = '>=0.6.7' 
    303304dill_version = '>=0.2a.dev' 
     305klepto_version = '>=0.1a.dev' 
    304306scipy_version = '>=0.6.0' 
    305307matplotlib_version = '>=0.91' 
     
    308310      zip_safe=True, 
    309311      dependency_links = ['http://dev.danse.us/packages/'], 
    310       install_requires = ('numpy%s', 'sympy%s', 'dill%s'), 
    311 """ % (numpy_version, sympy_version, dill_version) 
     312      install_requires = ('numpy%s', 'sympy%s', 'klepto%s', 'dill%s'), 
     313""" % (numpy_version, sympy_version, klepto_version, dill_version) 
    312314 
    313315# add the scripts, and close 'setup' call 
     
    327329    import numpy 
    328330    import sympy 
     331    import klepto 
    329332    import dill 
    330333    #import scipy 
     
    335338    print "    numpy %s" % numpy_version 
    336339    print "    sympy %s" % sympy_version 
     340    print "    klepto %s" % klepto_version 
    337341    print "    dill %s" % dill_version 
    338342    print "    scipy %s (optional)" % scipy_version 
Note: See TracChangeset for help on using the changeset viewer.