From d9fe17e91a2739e7ddbfaa0b1af4674d7d79775b Mon Sep 17 00:00:00 2001 From: Roy Hooper Date: Sun, 16 Aug 2020 20:34:18 -0400 Subject: [PATCH] remove self from copyright, authors --- LICENSE | 2 +- adafruit_led_animation/__init__.py | 4 ++-- adafruit_led_animation/animation/__init__.py | 3 +-- adafruit_led_animation/animation/blink.py | 3 +-- adafruit_led_animation/animation/chase.py | 3 +-- adafruit_led_animation/animation/colorcycle.py | 3 +-- adafruit_led_animation/animation/comet.py | 3 +-- adafruit_led_animation/animation/customcolorchase.py | 3 +-- adafruit_led_animation/animation/grid_rain.py | 3 +-- adafruit_led_animation/animation/pulse.py | 3 +-- adafruit_led_animation/animation/rainbow.py | 3 +-- adafruit_led_animation/animation/rainbowchase.py | 3 +-- adafruit_led_animation/animation/rainbowcomet.py | 3 +-- adafruit_led_animation/animation/rainbowsparkle.py | 3 +-- adafruit_led_animation/animation/solid.py | 3 +-- adafruit_led_animation/animation/sparkle.py | 3 +-- adafruit_led_animation/animation/sparklepulse.py | 3 +-- adafruit_led_animation/grid.py | 4 ++-- adafruit_led_animation/group.py | 3 +-- adafruit_led_animation/helper.py | 4 ++-- adafruit_led_animation/sequence.py | 3 +-- docs/conf.py | 4 ++-- 22 files changed, 26 insertions(+), 43 deletions(-) diff --git a/LICENSE b/LICENSE index 3367ac5..e038e70 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ The MIT License (MIT) Copyright (c) 2017 Adam Patt -Copyright (c) 2019-2020 Roy Hooper, Kattni Rembor +Copyright (c) 2019-2020 Kattni Rembor Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/adafruit_led_animation/__init__.py b/adafruit_led_animation/__init__.py index b27ba9a..cabb4f8 100644 --- a/adafruit_led_animation/__init__.py +++ b/adafruit_led_animation/__init__.py @@ -1,6 +1,6 @@ # The MIT License (MIT) # -# Copyright (c) 2020 Roy Hooper +# Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,7 +22,7 @@ """ Timing for Adafruit LED Animation library. -Author(s): Roy Hooper +Author(s): Kattni Rembor """ try: diff --git a/adafruit_led_animation/animation/__init__.py b/adafruit_led_animation/animation/__init__.py index 6dd53de..43a10f0 100644 --- a/adafruit_led_animation/animation/__init__.py +++ b/adafruit_led_animation/animation/__init__.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Animation base class for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/blink.py b/adafruit_led_animation/animation/blink.py index 8d482f8..479ab58 100644 --- a/adafruit_led_animation/animation/blink.py +++ b/adafruit_led_animation/animation/blink.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Blink animation for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/chase.py b/adafruit_led_animation/animation/chase.py index c15c6c1..e74c32b 100644 --- a/adafruit_led_animation/animation/chase.py +++ b/adafruit_led_animation/animation/chase.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Theatre chase animation for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/colorcycle.py b/adafruit_led_animation/animation/colorcycle.py index 6408713..43d16cd 100644 --- a/adafruit_led_animation/animation/colorcycle.py +++ b/adafruit_led_animation/animation/colorcycle.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Color cycle animation for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/comet.py b/adafruit_led_animation/animation/comet.py index 7e77c9d..730da89 100644 --- a/adafruit_led_animation/animation/comet.py +++ b/adafruit_led_animation/animation/comet.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Comet animation for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/customcolorchase.py b/adafruit_led_animation/animation/customcolorchase.py index 7defcb6..1b466e9 100644 --- a/adafruit_led_animation/animation/customcolorchase.py +++ b/adafruit_led_animation/animation/customcolorchase.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # Copyright (c) 2020 Connie Sieh # @@ -27,7 +26,7 @@ Custom color chase animation for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor, Connie Sieh +* Author(s): Kattni Rembor, Connie Sieh Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/grid_rain.py b/adafruit_led_animation/animation/grid_rain.py index adf3aee..3a9732a 100644 --- a/adafruit_led_animation/animation/grid_rain.py +++ b/adafruit_led_animation/animation/grid_rain.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Rain animations for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/pulse.py b/adafruit_led_animation/animation/pulse.py index e788d6d..10f0f88 100644 --- a/adafruit_led_animation/animation/pulse.py +++ b/adafruit_led_animation/animation/pulse.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Pulse animation for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/rainbow.py b/adafruit_led_animation/animation/rainbow.py index 0130708..f1f18bf 100644 --- a/adafruit_led_animation/animation/rainbow.py +++ b/adafruit_led_animation/animation/rainbow.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Rainbow animation for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/rainbowchase.py b/adafruit_led_animation/animation/rainbowchase.py index 1b0c51f..dd86100 100644 --- a/adafruit_led_animation/animation/rainbowchase.py +++ b/adafruit_led_animation/animation/rainbowchase.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Rainbow chase animation for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/rainbowcomet.py b/adafruit_led_animation/animation/rainbowcomet.py index 6fa22f4..26001e3 100644 --- a/adafruit_led_animation/animation/rainbowcomet.py +++ b/adafruit_led_animation/animation/rainbowcomet.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Rainbow comet for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/rainbowsparkle.py b/adafruit_led_animation/animation/rainbowsparkle.py index e52cec0..20c342b 100644 --- a/adafruit_led_animation/animation/rainbowsparkle.py +++ b/adafruit_led_animation/animation/rainbowsparkle.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Rainbow sparkle for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/solid.py b/adafruit_led_animation/animation/solid.py index 497fff3..fe702ee 100644 --- a/adafruit_led_animation/animation/solid.py +++ b/adafruit_led_animation/animation/solid.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Solid animation for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/sparkle.py b/adafruit_led_animation/animation/sparkle.py index b00adb7..612e374 100644 --- a/adafruit_led_animation/animation/sparkle.py +++ b/adafruit_led_animation/animation/sparkle.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Sparkle animation for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/animation/sparklepulse.py b/adafruit_led_animation/animation/sparklepulse.py index 9a06848..6898f02 100644 --- a/adafruit_led_animation/animation/sparklepulse.py +++ b/adafruit_led_animation/animation/sparklepulse.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,7 +25,7 @@ Sparkle-pulse animation for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, dmolavi +* Author(s): dmolavi Implementation Notes -------------------- diff --git a/adafruit_led_animation/grid.py b/adafruit_led_animation/grid.py index 6000d70..bd85034 100644 --- a/adafruit_led_animation/grid.py +++ b/adafruit_led_animation/grid.py @@ -1,6 +1,6 @@ # The MIT License (MIT) # -# Copyright (c) 2019 Roy Hooper +# Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -25,7 +25,7 @@ PixelGrid helper for 2D animations. -* Author(s): Roy Hooper +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/group.py b/adafruit_led_animation/group.py index a036a03..0fe8771 100644 --- a/adafruit_led_animation/group.py +++ b/adafruit_led_animation/group.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -27,7 +26,7 @@ Animation group helper for CircuitPython helper library for LED animations.. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/helper.py b/adafruit_led_animation/helper.py index fea729e..fcc2182 100644 --- a/adafruit_led_animation/helper.py +++ b/adafruit_led_animation/helper.py @@ -1,6 +1,6 @@ # The MIT License (MIT) # -# Copyright (c) 2019 Roy Hooper +# Copyright (c) 2019 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -25,7 +25,7 @@ Helper classes for making complex animations using CircuitPython LED animations library. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/adafruit_led_animation/sequence.py b/adafruit_led_animation/sequence.py index eb9ad91..c59cf9b 100644 --- a/adafruit_led_animation/sequence.py +++ b/adafruit_led_animation/sequence.py @@ -1,6 +1,5 @@ # The MIT License (MIT) # -# Copyright (c) 2019-2020 Roy Hooper # Copyright (c) 2020 Kattni Rembor for Adafruit Industries # # Permission is hereby granted, free of charge, to any person obtaining a copy @@ -27,7 +26,7 @@ Animation sequence helper for CircuitPython helper library for LED animations. -* Author(s): Roy Hooper, Kattni Rembor +* Author(s): Kattni Rembor Implementation Notes -------------------- diff --git a/docs/conf.py b/docs/conf.py index fec636b..15bf828 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -39,8 +39,8 @@ # General information about the project. project = "LED_Animation Library" -copyright = "2018 Roy Hoopert" -author = "Roy Hooper" +copyright = "2020 Kattni Rembor" +author = "Kattni Rembor" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the