* 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
13 lines
331 B
Python
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!"
|