circup/tests/local_module.py
Patrick 86c0d0a111
Fix 84 - Apply Cookiecutter style to Circup Repo (#85)
* add pre-commit, remove duplicate redundant from makefile, fix all the lints
* Use pre-commit checks in build action
* Renamed files for REUSE to work in Ubuntu
* Move pre-commit earlier to fail faster
* remove makefile dependency and update docs
2021-02-19 09:19:15 -08:00

13 lines
331 B
Python

# SPDX-FileCopyrightText: 2019 Nicholas Tollervey, written for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""A simple Python file containing expected "local" metadata."""
__version__ = "1.2.3"
__repo__ = "https://github.com/adafruit/SomeLibrary.git"
def hello():
"""A hello function"""
return "Hello, World!"