Changeset 706
- Timestamp:
- 08/11/13 16:52:39 (3 years ago)
- Location:
- mystic
- Files:
-
- 9 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
mystic/LICENSE
r530 r706 1 This software is part of the open-source DANSEproject at the California1 This software is part of the open-source mystic project at the California 2 2 Institute of Technology, and is available subject to the conditions and 3 3 terms laid out below. By downloading and using this software you are … … 32 32 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 33 34 Copyright (c) 201 2California Institute of Technology. All rights reserved.34 Copyright (c) 2013 California Institute of Technology. All rights reserved. 35 35 -
mystic/cache/__init__.py
r670 r706 1 from _cache import * 2 import safe 3 import archives 4 import keymaps 1 # backward compatability 2 from klepto import lru_cache, lfu_cache, mru_cache 3 from klepto import rr_cache, inf_cache, no_cache 4 5 # end of file -
mystic/setup.py
r681 r706 155 155 - sympy, version >= 0.6.7 156 156 - dill, version >= 0.2a.dev 157 - klepto, version >= 0.1a.dev 157 158 158 159 Optional requirements:: … … 174 175 Many of the included examples are standard optimization test problems. 175 176 176 Instr uctions on building a new model are in `mystic.models.abstract_model`.177 Instr1ctions on building a new model are in `mystic.models.abstract_model`. 177 178 Mystic provides base classes for two types of models:: 178 179 … … 302 303 sympy_version = '>=0.6.7' 303 304 dill_version = '>=0.2a.dev' 305 klepto_version = '>=0.1a.dev' 304 306 scipy_version = '>=0.6.0' 305 307 matplotlib_version = '>=0.91' … … 308 310 zip_safe=True, 309 311 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) 312 314 313 315 # add the scripts, and close 'setup' call … … 327 329 import numpy 328 330 import sympy 331 import klepto 329 332 import dill 330 333 #import scipy … … 335 338 print " numpy %s" % numpy_version 336 339 print " sympy %s" % sympy_version 340 print " klepto %s" % klepto_version 337 341 print " dill %s" % dill_version 338 342 print " scipy %s (optional)" % scipy_version
Note: See TracChangeset
for help on using the changeset viewer.