27 lines
561 B
Python
27 lines
561 B
Python
# SPDX-FileCopyrightText: Copyright (c) 2021 Arofarn
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
"""
|
|
`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"
|