LICENSE
MANIFEST.in
README.md
pyproject.toml
examples/generate_unified_sql.py
sql_samples/feature_avg_payment_30d.sql
sql_samples/feature_cnt_paid_txn_30d.sql
sql_samples/feature_filter_only_flag.sql
sql_samples/feature_total_paid_active_30d.sql
src/feature_sql_tool/__init__.py
src/feature_sql_tool/config.py
src/feature_sql_tool/exceptions.py
src/feature_sql_tool/service.py
src/feature_sql_tool.egg-info/PKG-INFO
src/feature_sql_tool.egg-info/SOURCES.txt
src/feature_sql_tool.egg-info/dependency_links.txt
src/feature_sql_tool.egg-info/requires.txt
src/feature_sql_tool.egg-info/top_level.txt
src/feature_sql_tool/generator/__init__.py
src/feature_sql_tool/generator/cte_renderer.py
src/feature_sql_tool/generator/final_select_renderer.py
src/feature_sql_tool/generator/unified_sql_builder.py
src/feature_sql_tool/graph/__init__.py
src/feature_sql_tool/graph/canonicalizer.py
src/feature_sql_tool/graph/dependency_graph.py
src/feature_sql_tool/graph/filter_only_classifier.py
src/feature_sql_tool/graph/graph_classifier.py
src/feature_sql_tool/graph/unified_graph_builder.py
src/feature_sql_tool/lineage/__init__.py
src/feature_sql_tool/lineage/alias_resolver.py
src/feature_sql_tool/lineage/column_resolver.py
src/feature_sql_tool/lineage/expression_expander.py
src/feature_sql_tool/lineage/extractor.py
src/feature_sql_tool/lineage/filter_dependency_collector.py
src/feature_sql_tool/models/__init__.py
src/feature_sql_tool/models/execution_plan.py
src/feature_sql_tool/models/feature_spec.py
src/feature_sql_tool/models/graph.py
src/feature_sql_tool/models/lineage_result.py
src/feature_sql_tool/models/parse_result.py
src/feature_sql_tool/models/requests.py
src/feature_sql_tool/models/resolved_column.py
src/feature_sql_tool/models/reusable_subgraph.py
src/feature_sql_tool/parser/__init__.py
src/feature_sql_tool/parser/ast_normalizer.py
src/feature_sql_tool/parser/sql_loader.py
src/feature_sql_tool/parser/sql_parser.py
src/feature_sql_tool/planner/__init__.py
src/feature_sql_tool/planner/aggregate_step_builder.py
src/feature_sql_tool/planner/execution_planner.py
src/feature_sql_tool/planner/relation_step_builder.py
src/feature_sql_tool/planner/reusable_subgraph_detector.py
src/feature_sql_tool/reporting/__init__.py
src/feature_sql_tool/reporting/lineage_reporter.py
src/feature_sql_tool/reporting/optimization_reporter.py
src/feature_sql_tool/scope/__init__.py
src/feature_sql_tool/scope/alias_registry.py
src/feature_sql_tool/scope/passthrough_detector.py
src/feature_sql_tool/scope/relation_registry.py
src/feature_sql_tool/scope/scope_registry.py
tests/test_import.py
tests/test_smoke_usage.py