您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

26 行
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. ]