add extra module attrs

This commit is contained in:
Izalia Mae 2024-04-23 00:37:32 -04:00
parent 8681ab88e4
commit a9da16f93d

View file

@ -1,4 +1,8 @@
__version__ = "0.3.0-rc1"
__software__ = "Barkshark Lib"
__version_info__ = (0, 3, 0, "rc1")
__version__ = ".".join(str(v) for v in __version_info__[:3]) + f"-{__version_info__[3]}"
__author__ = "Zoey Mae"
__homepage__ = "https://git.barkshark.xyz/barkshark/blib"
from .algorithms import Algorithm, HS2019, RsaSha256
from .algorithms import get as get_algorithm, register as register_algorithm