1 # SPDX-License-Identifier: GPL-3.0-or-later
 
   3 # This file is part of Nominatim. (https://nominatim.org)
 
   5 # Copyright (C) 2024 by the Nominatim developer community.
 
   6 # For a full list of authors see the git log.
 
   8 Path settings for extra data used by Nominatim.
 
  10 from pathlib import Path
 
  12 SQLLIB_DIR = (Path(__file__) / '..' / '..' / '..' / 'lib-sql').resolve()
 
  13 LUALIB_DIR = (Path(__file__) / '..' / '..' / '..' / 'lib-lua').resolve()
 
  14 DATA_DIR = (Path(__file__) / '..' / '..' / '..' / 'data').resolve()
 
  15 CONFIG_DIR = (Path(__file__) / '..' / '..' / '..' / 'settings').resolve()