Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 255B

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