Package tax_deficit_simulator

Expand source code
from os.path import isfile
from os.path import dirname

version_file = '{}/version.txt'.format(dirname(__file__))

if isfile(version_file):
    with open(version_file) as version_file:
        __version__ = version_file.read().strip()

Sub-modules

tax_deficit_simulator.app
tax_deficit_simulator.calculator

This module is dedicated to simulations based on macroeconomic data, namely the anonymized and aggregated country-by- country data published by the …

tax_deficit_simulator.firm_level

This module is dedicated to simulations based on microeconomic data, namely the country-by-country breakdowns mandatori- ly reported by EU banks since …

tax_deficit_simulator.utils

This module provides several functions useful to run the simulations defined in "calculator.py" or "firm_level.py" …