"""Constants for vendor account creation script.""" # Valid company brands VALID_COMPANY_BRANDS = [ 'ab', 'altafonte', 'awal', 'drm', 'hrs', 'knr', 'ma', 'msk', 'sme', 'theorchard' ] # Company brand name variations mapping COMPANY_BRAND_MAP = { 'the orchard': 'theorchard', 'orchard': 'theorchard', 'mass appeal': 'ma', } # Required CSV columns REQUIRED_CSV_COLUMNS = ['Account Name', 'Company Brand'] # Optional CSV columns OPTIONAL_CSV_COLUMNS = ['Owner', 'Currency', 'Service Tier', 'RoyaltyShare ID']