├── .coveralls.yml ├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── REQUIREMENTS.txt ├── docs ├── Makefile ├── _build │ ├── doctrees │ │ ├── environment.pickle │ │ └── index.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _sources │ │ └── index.rst.txt │ │ ├── _static │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── jquery-3.4.1.js │ │ ├── jquery.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ └── underscore.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── search.html │ │ └── searchindex.js ├── conf.py ├── index.rst └── make.bat ├── preflightpy ├── __init__.py ├── _constants.py ├── env.py ├── params.py └── system.py ├── setup.py └── tests ├── __init__.py ├── env_test.py ├── input └── case.json ├── params_test.py └── temporary.py /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: T3Cmc72Wx1qtzBSuCz4DiKBaJ3JKUTa1o 2 | service_name: travis-pro 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/README.md -------------------------------------------------------------------------------- /REQUIREMENTS.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy 3 | scipy 4 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/_build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/.buildinfo -------------------------------------------------------------------------------- /docs/_build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_build/html/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/alabaster.css -------------------------------------------------------------------------------- /docs/_build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/_build/html/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/_build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/_build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/file.png -------------------------------------------------------------------------------- /docs/_build/html/_static/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/jquery-3.4.1.js -------------------------------------------------------------------------------- /docs/_build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/_build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/_build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/_build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/genindex.html -------------------------------------------------------------------------------- /docs/_build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/index.html -------------------------------------------------------------------------------- /docs/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/objects.inv -------------------------------------------------------------------------------- /docs/_build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/search.html -------------------------------------------------------------------------------- /docs/_build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/_build/html/searchindex.js -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /preflightpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/preflightpy/__init__.py -------------------------------------------------------------------------------- /preflightpy/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/preflightpy/_constants.py -------------------------------------------------------------------------------- /preflightpy/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/preflightpy/env.py -------------------------------------------------------------------------------- /preflightpy/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/preflightpy/params.py -------------------------------------------------------------------------------- /preflightpy/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/preflightpy/system.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/env_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/tests/env_test.py -------------------------------------------------------------------------------- /tests/input/case.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/tests/input/case.json -------------------------------------------------------------------------------- /tests/params_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/tests/params_test.py -------------------------------------------------------------------------------- /tests/temporary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RimorRes/PreflightPy/HEAD/tests/temporary.py --------------------------------------------------------------------------------