Skip to content

Commit

Permalink
adding populate package namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
joeywwwu committed Jan 27, 2024
1 parent 18f2c01 commit 15028b3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/hexdropper/__init__.py
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

0 comments on commit 15028b3

Please sign in to comment.