# # Copyright (c) 2009 Testrepository Contributors # # Licensed under either the Apache License, Version 2.0 or the BSD 3-clause # license at the users choice. A copy of both licenses are available in the # project source as Apache-2.0 and BSD. You may not use this file except in # compliance with one of these two licences. # # Unless required by applicable law or agreed to in writing, software # distributed under these licenses is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # license you chose for the specific language governing permissions and # limitations under that license. """The testrepository library. This library is divided into some broad areas. The commands package contains the main user entry points into the application. The ui package contains various user interfaces. The repository package contains the core storage code. The tests package contains tests and test specific support code. """ try: # If setuptools_scm is installed (e.g. in a development environment with # an editable install), then use it to determine the version dynamically. from setuptools_scm import get_version # This will fail with LookupError if the package is not installed in # editable mode or if Git is not installed. version = get_version(root="..", relative_to=__file__) __version__ = tuple(version.split(".")) except (ImportError, LookupError): # As a fallback, use the version that is hard-coded in the file. try: from ._version import __version__, version except ModuleNotFoundError: # The user is probably trying to run this without having installed # the package, so complain. raise RuntimeError( "testrepository is not correctly installed. Please install it with pip." )