__init__.py 279 B

123456789
  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 = (20, 1, 0)
  6. __version__ = ".".join([str(v) for v in version_info])
  7. SERVER = "gunicorn"
  8. SERVER_SOFTWARE = "%s/%s" % (SERVER, __version__)