選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

27 行
562B

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