__version__.py 336 B

123456789101112
  1. # -*- coding: utf-8 -*-
  2. """Version statement."""
  3. __title__ = 'acme'
  4. __description__ = 'Python3 boilerplate module.'
  5. __url__ = 'https://github.com/BastiTee/python3-boilerplate'
  6. __version__ = '0.0.1'
  7. __author__ = 'Basti Tee'
  8. __author_email__ = 'basti.tee@posteo.de'
  9. __license__ = 'Apache 2.0'
  10. __copyright__ = 'Copyright 2019 basti.tee'