Coverage for arrakis_server/__init__.py: 40.0%
5 statements
« prev ^ index » next coverage.py v7.6.12, created at 2025-08-12 16:39 -0700
« prev ^ index » next coverage.py v7.6.12, created at 2025-08-12 16:39 -0700
1# Copyright (c) 2022, California Institute of Technology and contributors
2#
3# You should have received a copy of the licensing terms for this
4# software included in the file "LICENSE" located in the top-level
5# directory of this package. If you did not, you can view a copy at
6# https://git.ligo.org/ngdd/arrakis-server/-/raw/main/LICENSE
8try:
9 from ._version import version as __version__
10except ModuleNotFoundError:
11 import setuptools_scm
13 __version__ = setuptools_scm.get_version(fallback_version="?.?.?")