Skip to content

Add repo and version information #36

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions adafruit_progressbar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
pass # No harm if the module isn't located
import displayio

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_ProgressBar.git"


class ProgressBarBase(displayio.TileGrid):
"""The base class for dynamic progress bar widgets.
Expand Down
3 changes: 3 additions & 0 deletions adafruit_progressbar/horizontalprogressbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
pass # Not needed for execution
from . import ProgressBarBase

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_ProgressBar.git"


# pylint: disable=too-few-public-methods
class HorizontalFillDirection:
Expand Down
2 changes: 2 additions & 0 deletions adafruit_progressbar/progressbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
# imports
from adafruit_progressbar.horizontalprogressbar import HorizontalProgressBar

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_ProgressBar.git"

# pylint: disable=too-many-arguments, too-few-public-methods
class ProgressBar(HorizontalProgressBar):
Expand Down
2 changes: 2 additions & 0 deletions adafruit_progressbar/verticalprogressbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
from . import ProgressBarBase
from .horizontalprogressbar import HorizontalProgressBar

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_ProgressBar.git"

# pylint: disable=too-few-public-methods
class VerticalFillDirection:
Expand Down