# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the terms described in the LICENSE file in # the root directory of this source tree. """ Type-safe data interchange for Python data classes. Provides auxiliary services for working with Python type annotations, converting typed data to and from JSON, and generating a JSON schema for a complex type. """ __version__ = "0.3.4" __author__ = "Levente Hunyadi" __copyright__ = "Copyright 2021-2024, Levente Hunyadi" __license__ = "MIT" __maintainer__ = "Levente Hunyadi" __status__ = "Production"