mbuali's picture
Upload folder using huggingface_hub
d1ceb73 verified
# -*- coding: utf-8 -*-
"""Release data for the IPython project."""
#-----------------------------------------------------------------------------
# Copyright (c) 2008, IPython Development Team.
# Copyright (c) 2001, Fernando Perez <[email protected]>
# Copyright (c) 2001, Janko Hauser <[email protected]>
# Copyright (c) 2001, Nathaniel Gray <[email protected]>
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
# IPython version information. An empty _version_extra corresponds to a full
# release. 'dev' as a _version_extra string means this is a development
# version
_version_major = 8
_version_minor = 26
_version_patch = 0
_version_extra = ".dev"
# _version_extra = "rc1"
_version_extra = "" # Uncomment this for full releases
# Construct full version string from these.
_ver = [_version_major, _version_minor, _version_patch]
__version__ = '.'.join(map(str, _ver))
if _version_extra:
__version__ = __version__ + _version_extra
version = __version__ # backwards compatibility name
version_info = (_version_major, _version_minor, _version_patch, _version_extra)
# Change this when incrementing the kernel protocol version
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]'