This repository has been archived on 2020-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
autonomic/autonomic/__init__.py

13 lines
207 B
Python

"""Autonomic module."""
try:
import pkg_resources
except ImportError:
pass
try:
__version__ = pkg_resources.get_distribution("autonomic").version
except Exception:
__version__ = "unknown"