release.py 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. # Name of the package for release purposes. This is the name which labels
  14. # the tarballs and RPMs made by distutils, so it's best to lowercase it.
  15. name = 'ipython'
  16. # IPython version information. An empty _version_extra corresponds to a full
  17. # release. 'dev' as a _version_extra string means this is a development
  18. # version
  19. _version_major = 5
  20. _version_minor = 10
  21. _version_patch = 0
  22. _version_extra = '.dev'
  23. # _version_extra = 'rc1'
  24. _version_extra = '' # Uncomment this for full releases
  25. # release.codename is deprecated in 2.0, will be removed in 3.0
  26. codename = ''
  27. # Construct full version string from these.
  28. _ver = [_version_major, _version_minor, _version_patch]
  29. __version__ = '.'.join(map(str, _ver))
  30. if _version_extra:
  31. __version__ = __version__ + _version_extra
  32. version = __version__ # backwards compatibility name
  33. version_info = (_version_major, _version_minor, _version_patch, _version_extra)
  34. # Change this when incrementing the kernel protocol version
  35. kernel_protocol_version_info = (5, 0)
  36. kernel_protocol_version = "%i.%i" % kernel_protocol_version_info
  37. description = "IPython: Productive Interactive Computing"
  38. long_description = \
  39. """
  40. IPython provides a rich toolkit to help you make the most out of using Python
  41. interactively. Its main components are:
  42. * A powerful interactive Python shell
  43. * A `Jupyter <http://jupyter.org/>`_ kernel to work with Python code in Jupyter
  44. notebooks and other interactive frontends.
  45. The enhanced interactive Python shells have the following main features:
  46. * Comprehensive object introspection.
  47. * Input history, persistent across sessions.
  48. * Caching of output results during a session with automatically generated
  49. references.
  50. * Extensible tab completion, with support by default for completion of python
  51. variables and keywords, filenames and function keywords.
  52. * Extensible system of 'magic' commands for controlling the environment and
  53. performing many tasks related either to IPython or the operating system.
  54. * A rich configuration system with easy switching between different setups
  55. (simpler than changing $PYTHONSTARTUP environment variables every time).
  56. * Session logging and reloading.
  57. * Extensible syntax processing for special purpose situations.
  58. * Access to the system shell with user-extensible alias system.
  59. * Easily embeddable in other Python programs and GUIs.
  60. * Integrated access to the pdb debugger and the Python profiler.
  61. The latest development version is always available from IPython's `GitHub
  62. site <http://github.com/ipython>`_.
  63. """
  64. license = 'BSD'
  65. authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'),
  66. 'Janko' : ('Janko Hauser','jhauser@zscout.de'),
  67. 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'),
  68. 'Ville' : ('Ville Vainio','vivainio@gmail.com'),
  69. 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'),
  70. 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'),
  71. 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'),
  72. 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'),
  73. 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'),
  74. }
  75. author = 'The IPython Development Team'
  76. author_email = 'ipython-dev@python.org'
  77. url = 'https://ipython.org'
  78. platforms = ['Linux','Mac OSX','Windows']
  79. keywords = ['Interactive','Interpreter','Shell', 'Embedding']
  80. classifiers = [
  81. 'Framework :: IPython',
  82. 'Intended Audience :: Developers',
  83. 'Intended Audience :: Science/Research',
  84. 'License :: OSI Approved :: BSD License',
  85. 'Programming Language :: Python',
  86. 'Programming Language :: Python :: 2',
  87. 'Programming Language :: Python :: 2.7',
  88. 'Programming Language :: Python :: 3',
  89. 'Topic :: System :: Shells'
  90. ]