-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix-(p)dds-parameter-bounds
- Loading branch information
Showing
41 changed files
with
353 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
include README.md | ||
include MANIFEST.in | ||
include setup.py | ||
include setup.cfg | ||
recursive-include spotpy/examples/cmf_data * | ||
recursive-include spotpy/examples/hymod_exe * | ||
recursive-include spotpy/examples/hymod_unix * | ||
recursive-include spotpy/examples/hymod_python * | ||
include LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
site_name: SPOTPY Documentation | ||
site_url: http://fb09-pasig.umwelt.uni-giessen.de/spotpy/ | ||
site_description: The documentation of the Statistical Parameter Optimization Framework | ||
site_author: Tobias Houska | ||
|
||
repo_url: https://github.com/thouska/spotpy/ | ||
edit_url: "" | ||
|
||
theme: | ||
name: readthedocs | ||
|
||
#markdown_extensions: [mathjax] | ||
|
||
|
||
nav: | ||
- Home: index.md | ||
- Tutorial: | ||
- Introduction: Introduction.md | ||
- Getting Started: getting_started.md | ||
- Rosenbrock: Rosenbrock.md | ||
- Griewank: Griewank.md | ||
- Ackley: Ackley.md | ||
- Hydrological_model: Hydrological_model.md | ||
- Working with DREAM and Hymod: Working with DREAM and Hymod.md | ||
- Advanced_hints: Advanced_hints.md | ||
- Algorithm_guide: Algorithm_guide.md | ||
|
||
- License: license.md | ||
|
||
|
||
copyright: Copyright © 2015, <a href="http://www.uni-giessen.de/cms/fbz/fb09/institute/ilr/wasser/mitarbeiter/houska">Tobias Houska</a>. | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# .readthedocs.yml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
|
||
# Build documentation with MkDocs | ||
mkdocs: | ||
configuration: mkdocs.yml | ||
|
||
# Optionally build your docs in additional formats such as PDF and ePub | ||
formats: all | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,16 +5,17 @@ | |
|
||
setup( | ||
name = 'spotpy', | ||
version = '1.5.8', | ||
version = '1.5.13', | ||
description = 'A Statistical Parameter Optimization Tool', | ||
long_description=open(os.path.join(os.path.dirname(__file__), | ||
"README.rst")).read(), | ||
author = 'Tobias Houska, Philipp Kraft, Alejandro Chamorro-Chavez and Lutz Breuer', | ||
author_email = '[email protected]', | ||
url = 'http://www.uni-giessen.de/cms/faculties/f09/institutes/ilr/hydro/download/spotpy', | ||
url = 'https://spotpy.readthedocs.io/en/latest/', | ||
license = 'MIT', | ||
install_requires=[ | ||
'scipy', 'numpy'], | ||
packages=find_packages(exclude=["tests*", "docs*"]), | ||
include_package_data = True, | ||
use_2to3 = True, | ||
keywords = 'Monte Carlo, MCMC, MLE, SCE-UA, Simulated Annealing, DE-MCz, DREAM, ROPE, Artifical Bee Colony, DDS, PA-DDS, Uncertainty, Calibration, Model, Signatures', | ||
classifiers = [ | ||
|
@@ -28,5 +29,6 @@ | |
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Topic :: Software Development :: Libraries :: Python Modules'], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.