For this module to work with the upcoming `circup` utility (see https://github.com/ntoll/circup), there needs to be two bits of metadata expressed as "dunder" objects within the module. Specifically, `circup` looks for something like the following: ``` __version__ = "1.2.3" __repo__ = "https://github.com/adafruit/SomeLibrary.git" ``` The `__version__` should be a correct semantic-version value (see: https://semver.org/). The `__repo__` should be the **HTTPS** URL used for cloning this repository. You can see an example of this behaviour in an existing project [here](https://github.com/adafruit/Adafruit_CircuitPython_VS1053/blob/master/adafruit_vs1053.py#L65). Please don't hesitate to ping me if you have any questions. Thank you! :snake: :heart: :+1: cc/@ladyada