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.

__about__.py 720B

123456789101112131415161718192021
  1. # This file is dual licensed under the terms of the Apache License, Version
  2. # 2.0, and the BSD License. See the LICENSE file in the root of this repository
  3. # for complete details.
  4. from __future__ import absolute_import, division, print_function
  5. __all__ = [
  6. "__title__", "__summary__", "__uri__", "__version__", "__author__",
  7. "__email__", "__license__", "__copyright__",
  8. ]
  9. __title__ = "packaging"
  10. __summary__ = "Core utilities for Python packages"
  11. __uri__ = "https://github.com/pypa/packaging"
  12. __version__ = "16.8"
  13. __author__ = "Donald Stufft and individual contributors"
  14. __email__ = "donald@stufft.io"
  15. __license__ = "BSD or Apache License, Version 2.0"
  16. __copyright__ = "Copyright 2014-2016 %s" % __author__