Skip to content

Commit

Permalink
add __version__ to bro.__init__ to make it readable for pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
bro-wi committed Mar 20, 2024
1 parent c33b1de commit 9aba348
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bro/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from bro.__version__ import __version__
import bro.__version__ as _version
from bro.api import *
from bro.helper_functions import *
from bro.objects import *

__version__ = _version.__version__

0 comments on commit 9aba348

Please sign in to comment.