File: __init__.py

package info (click to toggle)
pytest-logdog 0.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 116 kB
  • sloc: python: 329; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 163 bytes parent folder | download
1
2
3
4
5
6
7
from pkg_resources import get_distribution, DistributionNotFound


try:
    __version__ = get_distribution(__name__).version
except DistributionNotFound:
    pass