LICENSE
README.md
pyproject.toml
src/config.py
src/logging_config.py
src/main.py
src/integrations/__init__.py
src/integrations/crypto/__init__.py
src/integrations/crypto/binance/__init__.py
src/integrations/crypto/binance/futures_pnl_analyzer.py
src/integrations/crypto/binance/futures_pnl_analyzer_definition.py
src/integrations/crypto/coinbase/__init__.py
src/integrations/crypto/coinbase/analyzer_definition.py
src/integrations/crypto/coinbase/coinbase_parser.py
src/integrations/crypto/coinbase/coinbase_to_ir.py
src/integrations/crypto/coinbase/constants.py
src/integrations/crypto/coinbase/models.py
src/integrations/crypto/coinbase/report_analyzer.py
src/integrations/crypto/kraken/__init__.py
src/integrations/crypto/kraken/analyzer_definition.py
src/integrations/crypto/kraken/constants.py
src/integrations/crypto/kraken/kraken_parser.py
src/integrations/crypto/kraken/kraken_to_ir.py
src/integrations/crypto/kraken/models.py
src/integrations/crypto/kraken/report_analyzer.py
src/integrations/crypto/shared/__init__.py
src/integrations/crypto/shared/crypto_ir_models.py
src/integrations/crypto/shared/crypto_outputs.py
src/integrations/crypto/shared/generic_crypto_analyzer.py
src/integrations/crypto/shared/generic_ledger.py
src/integrations/crypto/shared/runtime.py
src/integrations/fund/__init__.py
src/integrations/fund/finexify/__init__.py
src/integrations/fund/finexify/analyzer_definition.py
src/integrations/fund/finexify/constants.py
src/integrations/fund/finexify/finexify_parser.py
src/integrations/fund/finexify/finexify_to_ir.py
src/integrations/fund/finexify/models.py
src/integrations/fund/finexify/report_analyzer.py
src/integrations/fund/shared/__init__.py
src/integrations/fund/shared/fund_ir_models.py
src/integrations/fund/shared/fund_outputs.py
src/integrations/fund/shared/generic_fund_analyzer.py
src/integrations/fund/shared/runtime.py
src/integrations/ibkr/__init__.py
src/integrations/ibkr/activity_statement_analyzer.py
src/integrations/ibkr/analyzer_definition.py
src/integrations/ibkr/constants.py
src/integrations/ibkr/models.py
src/integrations/ibkr/shared.py
src/integrations/ibkr/appendices/__init__.py
src/integrations/ibkr/appendices/aggregations.py
src/integrations/ibkr/appendices/csv_output.py
src/integrations/ibkr/appendices/declaration_text.py
src/integrations/ibkr/sections/__init__.py
src/integrations/ibkr/sections/dividends.py
src/integrations/ibkr/sections/income.py
src/integrations/ibkr/sections/instruments.py
src/integrations/ibkr/sections/interest.py
src/integrations/ibkr/sections/open_positions.py
src/integrations/ibkr/sections/sanity.py
src/integrations/ibkr/sections/tax_withholding.py
src/integrations/ibkr/sections/trades.py
src/integrations/p2p/__init__.py
src/integrations/p2p/afranga/__init__.py
src/integrations/p2p/afranga/afranga_parser.py
src/integrations/p2p/afranga/analyzer_definition.py
src/integrations/p2p/afranga/constants.py
src/integrations/p2p/afranga/models.py
src/integrations/p2p/afranga/report_analyzer.py
src/integrations/p2p/bondora_go_grow/__init__.py
src/integrations/p2p/bondora_go_grow/analyzer_definition.py
src/integrations/p2p/bondora_go_grow/bondora_go_grow_parser.py
src/integrations/p2p/bondora_go_grow/constants.py
src/integrations/p2p/bondora_go_grow/models.py
src/integrations/p2p/bondora_go_grow/report_analyzer.py
src/integrations/p2p/estateguru/__init__.py
src/integrations/p2p/estateguru/analyzer_definition.py
src/integrations/p2p/estateguru/constants.py
src/integrations/p2p/estateguru/estateguru_parser.py
src/integrations/p2p/estateguru/models.py
src/integrations/p2p/estateguru/report_analyzer.py
src/integrations/p2p/iuvo/__init__.py
src/integrations/p2p/iuvo/analyzer_definition.py
src/integrations/p2p/iuvo/constants.py
src/integrations/p2p/iuvo/iuvo_parser.py
src/integrations/p2p/iuvo/models.py
src/integrations/p2p/iuvo/report_analyzer.py
src/integrations/p2p/lendermarket/__init__.py
src/integrations/p2p/lendermarket/analyzer_definition.py
src/integrations/p2p/lendermarket/constants.py
src/integrations/p2p/lendermarket/lendermarket_parser.py
src/integrations/p2p/lendermarket/models.py
src/integrations/p2p/lendermarket/report_analyzer.py
src/integrations/p2p/robocash/__init__.py
src/integrations/p2p/robocash/analyzer_definition.py
src/integrations/p2p/robocash/constants.py
src/integrations/p2p/robocash/models.py
src/integrations/p2p/robocash/report_analyzer.py
src/integrations/p2p/robocash/robocash_parser.py
src/integrations/p2p/shared/__init__.py
src/integrations/p2p/shared/appendix6_models.py
src/integrations/p2p/shared/appendix6_renderer.py
src/integrations/p2p/shared/runtime.py
src/integrations/p2p/shared/text_money.py
src/integrations/shared/__init__.py
src/integrations/shared/aggregation.py
src/integrations/shared/autodetect.py
src/integrations/shared/cli_helpers.py
src/integrations/shared/contracts.py
src/integrations/shared/registry.py
src/integrations/shared/result_builders.py
src/integrations/shared/rendering/__init__.py
src/integrations/shared/rendering/appendix13.py
src/integrations/shared/rendering/appendix5.py
src/integrations/shared/rendering/appendix6.py
src/integrations/shared/rendering/appendix8.py
src/integrations/shared/rendering/appendix9.py
src/integrations/shared/rendering/common.py
src/integrations/shared/rendering/display_currency.py
src/report_analyzer/__init__.py
src/report_analyzer/__main__.py
src/report_analyzer/cli.py
src/report_analyzer/registry.py
src/services/__init__.py
src/services/pdf_reader.py
src/services/bnb_fx/__init__.py
src/services/bnb_fx/cache.py
src/services/bnb_fx/cli.py
src/services/bnb_fx/client.py
src/services/bnb_fx/models.py
src/services/bnb_fx/utils.py
src/services/crypto_fx/__init__.py
src/services/crypto_fx/cache.py
src/services/crypto_fx/cli.py
src/services/crypto_fx/client.py
src/services/crypto_fx/exchanges.py
src/services/crypto_fx/models.py
src/tax_reporting.egg-info/PKG-INFO
src/tax_reporting.egg-info/SOURCES.txt
src/tax_reporting.egg-info/dependency_links.txt
src/tax_reporting.egg-info/entry_points.txt
src/tax_reporting.egg-info/requires.txt
src/tax_reporting.egg-info/top_level.txt
tests/test_imports.py
tests/test_report_analyzer_cli.py