__init__.py 287 B

1234567891011
  1. # coding=utf-8
  2. from pkg_resources import DistributionNotFound, get_distribution
  3. __author__ = """Cristi V."""
  4. __email__ = 'cristi@cvjd.me'
  5. try:
  6. __version__ = get_distribution(__name__).version
  7. except DistributionNotFound: # pragma: no cover
  8. # package is not installed
  9. pass