__init__.py 472 B

1234567891011121314151617181920212223
  1. # -*- test-case-name: twisted -*-
  2. # Copyright (c) Twisted Matrix Laboratories.
  3. # See LICENSE for details.
  4. """
  5. Twisted: The Framework Of Your Internet.
  6. """
  7. # setup version
  8. from twisted._version import __version__ as version
  9. __version__ = version.short()
  10. from incremental import Version
  11. from twisted.python.deprecate import deprecatedModuleAttribute
  12. deprecatedModuleAttribute(
  13. Version('Twisted', 20, 3, 0),
  14. "morituri nolumus mori",
  15. "twisted",
  16. "news"
  17. )