restructure project

This commit is contained in:
Yaojia Wang
2026-01-27 23:58:17 +01:00
parent 58bf75db68
commit d6550375b0
230 changed files with 5513 additions and 1756 deletions

View File

@@ -9,13 +9,13 @@ Usage:
import pytest
from dataclasses import dataclass
from src.matcher.field_matcher import FieldMatcher, find_field_matches
from src.matcher.models import Match
from src.matcher.token_index import TokenIndex
from src.matcher.context import CONTEXT_KEYWORDS, find_context_keywords
from src.matcher import utils as matcher_utils
from src.matcher.utils import normalize_dashes as _normalize_dashes
from src.matcher.strategies import (
from shared.matcher.field_matcher import FieldMatcher, find_field_matches
from shared.matcher.models import Match
from shared.matcher.token_index import TokenIndex
from shared.matcher.context import CONTEXT_KEYWORDS, find_context_keywords
from shared.matcher import utils as matcher_utils
from shared.matcher.utils import normalize_dashes as _normalize_dashes
from shared.matcher.strategies import (
SubstringMatcher,
FlexibleDateMatcher,
FuzzyMatcher,