File: _version.py

package info (click to toggle)
csaps 1.3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 148 kB
  • sloc: python: 611; makefile: 6
file content (6 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
from importlib.metadata import PackageNotFoundError, version

try:
    __version__ = version('csaps')
except PackageNotFoundError:  # pragma: no cover
    __version__ = '0.0.0.dev0'