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.

26 lines
497B

  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 .__about__ import (
  5. __author__,
  6. __copyright__,
  7. __email__,
  8. __license__,
  9. __summary__,
  10. __title__,
  11. __uri__,
  12. __version__,
  13. )
  14. __all__ = [
  15. "__title__",
  16. "__summary__",
  17. "__uri__",
  18. "__version__",
  19. "__author__",
  20. "__email__",
  21. "__license__",
  22. "__copyright__",
  23. ]