├── .coveragerc ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE.txt ├── README.md ├── bandit.yml ├── docs ├── api.md ├── developper_guide.md ├── getting_started.md └── index.md ├── mc_sim_fin ├── __init__.py ├── mc.py └── utils │ ├── __init__.py │ └── helpers.py ├── mkdocs.yml ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── 1_unit └── test_helpers.py └── 2_func └── test_mc.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/.coveragerc -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/README.md -------------------------------------------------------------------------------- /bandit.yml: -------------------------------------------------------------------------------- 1 | skips: ['B101'] 2 | -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/developper_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/docs/developper_guide.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/docs/index.md -------------------------------------------------------------------------------- /mc_sim_fin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mc_sim_fin/mc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/mc_sim_fin/mc.py -------------------------------------------------------------------------------- /mc_sim_fin/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mc_sim_fin/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/mc_sim_fin/utils/helpers.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas==1.5.0 -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/setup.py -------------------------------------------------------------------------------- /tests/1_unit/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/tests/1_unit/test_helpers.py -------------------------------------------------------------------------------- /tests/2_func/test_mc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaugau3000/mc_sim_fin/HEAD/tests/2_func/test_mc.py --------------------------------------------------------------------------------