2021-06-28 11:49:18 +02:00
|
|
|
# SPDX-FileCopyrightText: Copyright (c) 2021 Arofarn
|
|
|
|
#
|
2021-06-28 12:10:40 +02:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2021-06-28 11:49:18 +02:00
|
|
|
"""
|
|
|
|
`umetpy`
|
|
|
|
================================================================================
|
|
|
|
|
|
|
|
Subset of MetPy Python module for CircuitPython
|
|
|
|
|
|
|
|
|
|
|
|
* Author(s): Arofarn
|
|
|
|
|
|
|
|
Implementation Notes
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
**Software and Dependencies:**
|
|
|
|
|
|
|
|
* Adafruit CircuitPython firmware for the supported boards:
|
|
|
|
https://github.com/adafruit/circuitpython/releases
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
# imports
|
|
|
|
|
|
|
|
__version__ = "0.0.0-auto.0"
|
|
|
|
__repo__ = "https://github.com/arofarn/CircuitPython_uMetPy.git"
|