File: __init__.py

package info (click to toggle)
python-questplus 2023.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 320 kB
  • sloc: python: 1,345; makefile: 18
file content (9 lines) | stat: -rw-r--r-- 254 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
from importlib.metadata import version, PackageNotFoundError

try:
    __version__ = version("questplus")
except PackageNotFoundError:
    # package is not installed
    pass

from .qp import QuestPlus, QuestPlusWeibull, QuestPlusThurstone  # noqa: F401