Skip to content

Commit

Permalink
add version
Browse files Browse the repository at this point in the history
  • Loading branch information
dbdimitrov committed Nov 10, 2023
1 parent e669365 commit 338f8c0
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions liana/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
import os
import pathlib
HERE = pathlib.Path(__file__).parent.parent

with open(os.path.join(HERE, 'pyproject.toml'), 'r') as toml_file:
for line in toml_file:
if line.strip().startswith('version'):
version = line.split('=')[1].strip().strip('"')
break
__version__ = version
__version__ = '1.0.3'

from liana import method as mt, plotting as pl, resource as rs, multi as mu, utils as ut, testing

Expand Down

0 comments on commit 338f8c0

Please sign in to comment.