diff --git a/bptc19696.py b/bptc19696.py index c333f69..151fc7b 100755 --- a/bptc19696.py +++ b/bptc19696.py @@ -12,7 +12,15 @@ from bitstring import BitArray from binascii import b2a_hex as h from time import time - +# Does anybody read this stuff? There's a PEP somewhere that says I should do this. +__author__ = 'Cortney T. Buffington, N0MJS' +__copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group' +__credits__ = 'Colin Durbridge, G4EML, Steve Zingman, N4IRS; Mike Zingman, N4IRR; Jonathan Naylor, G4KLX; Hans Barthen, DL5DI; Torsten Shultze, DG1HT' +__license__ = 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported' +__maintainer__ = 'Cort Buffington, N0MJS' +__email__ = 'n0mjs@me.com' + + def binary_196(_data): _data = bytearray(_data) _data = BitArray(_data) diff --git a/hb_config.py b/hb_config.py index 36dfdd0..4e69e60 100755 --- a/hb_config.py +++ b/hb_config.py @@ -11,6 +11,13 @@ import sys from socket import gethostbyname +# Does anybody read this stuff? There's a PEP somewhere that says I should do this. +__author__ = 'Cortney T. Buffington, N0MJS' +__copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group' +__credits__ = 'Colin Durbridge, G4EML, Steve Zingman, N4IRS; Mike Zingman, N4IRR; Jonathan Naylor, G4KLX; Hans Barthen, DL5DI; Torsten Shultze, DG1HT' +__license__ = 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported' +__maintainer__ = 'Cort Buffington, N0MJS' +__email__ = 'n0mjs@me.com' def build_config(_config_file): diff --git a/hb_log.py b/hb_log.py index ed6d8a2..5be04d9 100755 --- a/hb_log.py +++ b/hb_log.py @@ -9,6 +9,15 @@ import logging from logging.config import dictConfig +# Does anybody read this stuff? There's a PEP somewhere that says I should do this. +__author__ = 'Cortney T. Buffington, N0MJS' +__copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group' +__credits__ = 'Colin Durbridge, G4EML, Steve Zingman, N4IRS; Mike Zingman, N4IRR; Jonathan Naylor, G4KLX; Hans Barthen, DL5DI; Torsten Shultze, DG1HT' +__license__ = 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported' +__maintainer__ = 'Cort Buffington, N0MJS' +__email__ = 'n0mjs@me.com' + + def config_logging(_logger): dictConfig({ 'version': 1, diff --git a/hblink.py b/hblink.py index 7490156..2e73994 100755 --- a/hblink.py +++ b/hblink.py @@ -45,7 +45,6 @@ __credits__ = 'Colin Durbridge, G4EML, Steve Zingman, N4IRS; Mike Zingman, N4 __license__ = 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported' __maintainer__ = 'Cort Buffington, N0MJS' __email__ = 'n0mjs@me.com' -__status__ = 'pre-alpha' # Global variables used whether we are a module or __main__