__about__.py 652 B

1234567891011121314151617181920212223
  1. import time
  2. __version__ = "0.15.3"
  3. __author__ = "Lightning AI et al."
  4. __author_email__ = "developer@lightning.ai"
  5. __license__ = "Apache-2.0"
  6. __copyright__ = f"Copyright (c) 2022-{time.strftime('%Y')}, {__author__}."
  7. __homepage__ = "https://github.com/Lightning-AI/utilities"
  8. __docs__ = "Lightning toolbox for across the our ecosystem."
  9. __long_doc__ = """
  10. This package allows for sharing GitHub workflows, CI/CD assistance actions, and Python utilities across the Lightning
  11. ecosystem - projects.
  12. """
  13. __all__ = [
  14. "__author__",
  15. "__author_email__",
  16. "__copyright__",
  17. "__docs__",
  18. "__homepage__",
  19. "__license__",
  20. "__version__",
  21. ]