.gitignore
.pre-commit-config.yaml
CONTRIBUTING.md
ExampleSimulation.ipynb
LICENSE
README.md
RELEASE.md
pyproject.toml
requirements-dev.txt
requirements.txt
tox.ini
.github/dependabot.yml
.github/workflows/build.yml
.github/workflows/docs.yml
.github/workflows/publish-pypi.yml
.github/workflows/publish-test-pypi.yml
.github/workflows/python-tox.yml
.vscode/life-model.code-workspace
.vscode/settings.json
.vscode/tasks.json
dashboard/README.md
dashboard/app.py
dashboard/requirements-dash.txt
dashboard/tests/__init__.py
dashboard/tests/conftest.py
dashboard/tests/test_dashboard.py
deepqlearning/README.md
deepqlearning/Training_Example.ipynb
deepqlearning/actions.py
deepqlearning/agent.py
deepqlearning/baselines.py
deepqlearning/environment.py
deepqlearning/requirements-rl.txt
deepqlearning/train_financial_agent.py
deepqlearning/tests/__init__.py
deepqlearning/tests/conftest.py
deepqlearning/tests/test_actions.py
deepqlearning/tests/test_agent.py
deepqlearning/tests/test_baselines.py
deepqlearning/tests/test_environment.py
deepqlearning/tests/test_training_notebook.py
docs/Makefile
docs/apidoc.rst
docs/conf.py
docs/configuration.md
docs/index.rst
docs/install.rst
docs/license.rst
docs/make.bat
docs/warning.rst
docs/_static/.gitkeep
docs/_templates/autosummary/module.rst
img/dashboard.png
img/stats.png
src/life_model/__init__.py
src/life_model/__main__.py
src/life_model/_version.py
src/life_model/base_classes.py
src/life_model/economy.py
src/life_model/lifeevents.py
src/life_model/limits.py
src/life_model/model.py
src/life_model/montecarlo.py
src/life_model/registry.py
src/life_model.egg-info/PKG-INFO
src/life_model.egg-info/SOURCES.txt
src/life_model.egg-info/dependency_links.txt
src/life_model.egg-info/requires.txt
src/life_model.egg-info/scm_file_list.json
src/life_model.egg-info/scm_version.json
src/life_model.egg-info/top_level.txt
src/life_model/account/__init__.py
src/life_model/account/bank.py
src/life_model/account/brokerage.py
src/life_model/account/hsa.py
src/life_model/account/job401k.py
src/life_model/account/pension.py
src/life_model/account/roth_IRA.py
src/life_model/account/traditional_IRA.py
src/life_model/charity/__init__.py
src/life_model/charity/daf.py
src/life_model/charity/donation.py
src/life_model/config/__init__.py
src/life_model/config/base_config.py
src/life_model/config/config_manager.py
src/life_model/config/financial_config.py
src/life_model/config/models.py
src/life_model/config/scenarios.py
src/life_model/config/data/financial_defaults.yaml
src/life_model/config/data/scenarios/aggressive.yaml
src/life_model/config/data/scenarios/boom.yaml
src/life_model/config/data/scenarios/conservative.yaml
src/life_model/config/data/scenarios/deflation.yaml
src/life_model/config/data/scenarios/high_inflation.yaml
src/life_model/config/data/scenarios/high_tax.yaml
src/life_model/config/data/scenarios/low_tax.yaml
src/life_model/config/data/scenarios/recession.yaml
src/life_model/config/data/scenarios/tax_reform.yaml
src/life_model/debt/__init__.py
src/life_model/debt/car_loan.py
src/life_model/debt/credit_card.py
src/life_model/debt/student_loan.py
src/life_model/dependents/__init__.py
src/life_model/dependents/child.py
src/life_model/dependents/plan529.py
src/life_model/housing/__init__.py
src/life_model/housing/apartment.py
src/life_model/housing/home.py
src/life_model/insurance/__init__.py
src/life_model/insurance/annuity.py
src/life_model/insurance/general_insurance.py
src/life_model/insurance/life_insurance.py
src/life_model/insurance/social_security.py
src/life_model/people/__init__.py
src/life_model/people/family.py
src/life_model/people/mortality.py
src/life_model/people/person.py
src/life_model/people/tax_unit.py
src/life_model/people/types.py
src/life_model/services/__init__.py
src/life_model/services/debt_service.py
src/life_model/services/payment_service.py
src/life_model/services/tax_calculation_service.py
src/life_model/tax/__init__.py
src/life_model/tax/federal.py
src/life_model/tax/fica.py
src/life_model/tax/income.py
src/life_model/tax/state.py
src/life_model/tax/tax.py
src/life_model/tests/__init__.py
src/life_model/tests/__main__.py
src/life_model/tests/notebook_test_base.py
src/life_model/tests/test_annuity.py
src/life_model/tests/test_apartment.py
src/life_model/tests/test_bank.py
src/life_model/tests/test_brokerage.py
src/life_model/tests/test_car_loan.py
src/life_model/tests/test_child.py
src/life_model/tests/test_config.py
src/life_model/tests/test_credit_card.py
src/life_model/tests/test_daf.py
src/life_model/tests/test_debt_integration.py
src/life_model/tests/test_donation.py
src/life_model/tests/test_economy.py
src/life_model/tests/test_engine_correctness.py
src/life_model/tests/test_family.py
src/life_model/tests/test_general_insurance.py
src/life_model/tests/test_home.py
src/life_model/tests/test_hsa.py
src/life_model/tests/test_inheritance.py
src/life_model/tests/test_investment.py
src/life_model/tests/test_job.py
src/life_model/tests/test_job401k.py
src/life_model/tests/test_life_insurance.py
src/life_model/tests/test_loan.py
src/life_model/tests/test_main.py
src/life_model/tests/test_meta.py
src/life_model/tests/test_montecarlo.py
src/life_model/tests/test_mortality.py
src/life_model/tests/test_mortality_death.py
src/life_model/tests/test_notebooks.py
src/life_model/tests/test_pension.py
src/life_model/tests/test_person.py
src/life_model/tests/test_plan529.py
src/life_model/tests/test_properties.py
src/life_model/tests/test_registry.py
src/life_model/tests/test_roth_ira.py
src/life_model/tests/test_scenarios.py
src/life_model/tests/test_services.py
src/life_model/tests/test_social_security.py
src/life_model/tests/test_student_loan.py
src/life_model/tests/test_tax_engine.py
src/life_model/tests/test_tax_functions.py
src/life_model/tests/test_traditional_ira.py
src/life_model/tests/fixtures/test_config.yaml
src/life_model/work/__init__.py
src/life_model/work/job.py