Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
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.

__init__.py 517B

123456789101112131415161718192021222324
  1. # Copyright (c) Twisted Matrix Laboratories.
  2. # See LICENSE for details.
  3. from constantly._constants import (
  4. NamedConstant, Names, ValueConstant, Values, FlagConstant, Flags
  5. )
  6. from ._version import get_versions
  7. __version__ = get_versions()['version']
  8. del get_versions
  9. __author__ = "Twisted Matrix Laboratories"
  10. __license__ = "MIT"
  11. __copyright__ = "Copyright 2011-2015 {0}".format(__author__)
  12. __all__ = [
  13. 'NamedConstant',
  14. 'ValueConstant',
  15. 'FlagConstant',
  16. 'Names',
  17. 'Values',
  18. 'Flags',
  19. ]