release.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # -*- coding: utf-8 -*-
  2. """Release data for the IPython project."""
  3. #-----------------------------------------------------------------------------
  4. # Copyright (c) 2008, IPython Development Team.
  5. # Copyright (c) 2001, Fernando Perez <fernando.perez@colorado.edu>
  6. # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de>
  7. # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu>
  8. #
  9. # Distributed under the terms of the Modified BSD License.
  10. #
  11. # The full license is in the file COPYING.txt, distributed with this software.
  12. #-----------------------------------------------------------------------------
  13. # IPython version information. An empty _version_extra corresponds to a full
  14. # release. 'dev' as a _version_extra string means this is a development
  15. # version
  16. _version_major = 8
  17. _version_minor = 31
  18. _version_patch = 0
  19. _version_extra = ".dev"
  20. # _version_extra = "rc1"
  21. _version_extra = "" # Uncomment this for full releases
  22. # Construct full version string from these.
  23. _ver = [_version_major, _version_minor, _version_patch]
  24. __version__ = '.'.join(map(str, _ver))
  25. if _version_extra:
  26. __version__ = __version__ + _version_extra
  27. version = __version__ # backwards compatibility name
  28. version_info = (_version_major, _version_minor, _version_patch, _version_extra)
  29. license = "BSD-3-Clause"
  30. authors = {
  31. "Fernando": ("Fernando Perez", "fperez.net@gmail.com"),
  32. "M": ("M Bussonnier", "mbussonnier@gmail.com"),
  33. }
  34. author = 'The IPython Development Team'
  35. author_email = 'ipython-dev@python.org'