|
|
|
"""Release data for the IPython project.""" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_version_major = 8 |
|
_version_minor = 26 |
|
_version_patch = 0 |
|
_version_extra = ".dev" |
|
|
|
_version_extra = "" |
|
|
|
|
|
_ver = [_version_major, _version_minor, _version_patch] |
|
|
|
__version__ = '.'.join(map(str, _ver)) |
|
if _version_extra: |
|
__version__ = __version__ + _version_extra |
|
|
|
version = __version__ |
|
version_info = (_version_major, _version_minor, _version_patch, _version_extra) |
|
|
|
|
|
kernel_protocol_version_info = (5, 0) |
|
kernel_protocol_version = "%i.%i" % kernel_protocol_version_info |
|
|
|
license = "BSD-3-Clause" |
|
|
|
authors = {'Fernando' : ('Fernando Perez','[email protected]'), |
|
'Janko' : ('Janko Hauser','[email protected]'), |
|
'Nathan' : ('Nathaniel Gray','[email protected]'), |
|
'Ville' : ('Ville Vainio','[email protected]'), |
|
'Brian' : ('Brian E Granger', '[email protected]'), |
|
'Min' : ('Min Ragan-Kelley', '[email protected]'), |
|
'Thomas' : ('Thomas A. Kluyver', '[email protected]'), |
|
'Jorgen' : ('Jorgen Stenarson', '[email protected]'), |
|
'Matthias' : ('Matthias Bussonnier', '[email protected]'), |
|
} |
|
|
|
author = 'The IPython Development Team' |
|
|
|
author_email = '[email protected]' |
|
|