adafruit / Adafruit_CircuitPython_EPD

e paper driver for circuit python
MIT License
41 stars 19 forks source link

Please add __version__ and __repo__ metadata. Thank you! #25

Closed ntoll closed 4 years ago

ntoll commented 4 years ago

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 a file in this 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.

Please don't hesitate to ping me if you have any questions. Thank you! :snake: :heart: :+1:

cc/@ladyada