__init__.py 255 B

12345678
  1. # -*- coding: utf-8 -
  2. #
  3. # This file is part of gunicorn released under the MIT license.
  4. # See the NOTICE for more information.
  5. version_info = (19, 7, 1)
  6. __version__ = ".".join([str(v) for v in version_info])
  7. SERVER_SOFTWARE = "gunicorn/%s" % __version__