release.py 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 = 16
  18. _version_patch = 1
  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. # Change this when incrementing the kernel protocol version
  30. kernel_protocol_version_info = (5, 0)
  31. kernel_protocol_version = "%i.%i" % kernel_protocol_version_info
  32. license = "BSD-3-Clause"
  33. authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'),
  34. 'Janko' : ('Janko Hauser','jhauser@zscout.de'),
  35. 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'),
  36. 'Ville' : ('Ville Vainio','vivainio@gmail.com'),
  37. 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'),
  38. 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'),
  39. 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'),
  40. 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'),
  41. 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'),
  42. }
  43. author = 'The IPython Development Team'
  44. author_email = 'ipython-dev@python.org'