-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
# read version from installed package | ||
from importlib.metadata import version | ||
__version__ = version("hexdropper") | ||
# __version__ = "0.1.0" | ||
|
||
# populate package namespace | ||
from hexdropper.read_image import read_image | ||
from hexdropper.most_common_rgb import most_common_rgb | ||
from hexdropper.rgb_to_hex import rgb_to_hex | ||
from hexdropper.create_color_image import create_color_image |