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.

27 lines
661B

  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. __all__ = [
  5. "__title__",
  6. "__summary__",
  7. "__uri__",
  8. "__version__",
  9. "__author__",
  10. "__email__",
  11. "__license__",
  12. "__copyright__",
  13. ]
  14. __title__ = "packaging"
  15. __summary__ = "Core utilities for Python packages"
  16. __uri__ = "https://github.com/pypa/packaging"
  17. __version__ = "21.0"
  18. __author__ = "Donald Stufft and individual contributors"
  19. __email__ = "donald@stufft.io"
  20. __license__ = "BSD-2-Clause or Apache-2.0"
  21. __copyright__ = "2014-2019 %s" % __author__