2021-05-08 14:25:29 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2022-01-24 04:07:52 +00:00
|
|
|
# Copyright 2009-2021 Joshua Bronson. All Rights Reserved.
|
2021-05-08 14:25:29 +00:00
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
"""Define bidict package metadata."""
|
|
|
|
|
|
|
|
|
2022-01-24 04:07:52 +00:00
|
|
|
__version__ = '0.21.4'
|
|
|
|
__author__ = 'Joshua Bronson'
|
|
|
|
__maintainer__ = 'Joshua Bronson'
|
|
|
|
__copyright__ = 'Copyright 2009-2021 Joshua Bronson'
|
|
|
|
__email__ = 'jabronson@gmail.com'
|
2021-05-08 14:25:29 +00:00
|
|
|
|
|
|
|
# See: ../docs/thanks.rst
|
2022-01-24 04:07:52 +00:00
|
|
|
__credits__ = [i.strip() for i in """
|
2021-05-08 14:25:29 +00:00
|
|
|
Joshua Bronson, Michael Arntzenius, Francis Carr, Gregory Ewing, Raymond Hettinger, Jozef Knaperek,
|
|
|
|
Daniel Pope, Terry Reedy, David Turner, Tom Viner, Richard Sanger, Zeyi Wang
|
2022-01-24 04:07:52 +00:00
|
|
|
""".split(',')]
|
2021-05-08 14:25:29 +00:00
|
|
|
|
2022-01-24 04:07:52 +00:00
|
|
|
__description__ = 'The bidirectional mapping library for Python.'
|
2021-05-08 14:25:29 +00:00
|
|
|
__keywords__ = 'dict dictionary mapping datastructure bimap bijection bijective ' \
|
|
|
|
'injective inverse reverse bidirectional two-way 2-way'
|
|
|
|
|
2022-01-24 04:07:52 +00:00
|
|
|
__license__ = 'MPL 2.0'
|
|
|
|
__status__ = 'Beta'
|
|
|
|
__url__ = 'https://bidict.readthedocs.io'
|