* 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
348 B
Python
13 lines
348 B
Python
# SPDX-FileCopyrightText: 2019 Nicholas Tollervey, written for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
"""A simple directory based Python module containing expected "local" metadata."""
|
|
|
|
__version__ = "3.2.1"
|
|
__repo__ = "https://github.com/adafruit/SomeModule.git"
|
|
|
|
|
|
def hello():
|
|
"""A hello function"""
|
|
return "Hello, World!"
|