Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Commit

Permalink
move __version__ to common.__init__
Browse files Browse the repository at this point in the history
  • Loading branch information
kushalkolar committed Jul 15, 2020
1 parent 3bc5a6c commit 6bc7f84
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
3 changes: 1 addition & 2 deletions mesmerize/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from .analysis import *
from .plotting import widgets as plot_widgets
from .plotting import variants as plot_variants
from .common import utils, configuration
from .common import __version__, utils, configuration
from .common.utils import HdfTools
from .pyqtgraphCore.widgets.MatplotlibWidget import MatplotlibWidget as MPLWidget
__version__ = '0.2.2'
__author__ = "Kushal Kolar"
11 changes: 6 additions & 5 deletions mesmerize/common/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#@author: kushal
# @author: kushal

#Chatzigeorgiou Group
#Sars International Centre for Marine Molecular Biology
# Chatzigeorgiou Group
# Sars International Centre for Marine Molecular Biology

#GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
# GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007

__version__ = '0.2.2'


import os
Expand All @@ -15,7 +17,6 @@
from functools import partial
from PyQt5.QtWidgets import QApplication
from abc import ABCMeta
from .. import __version__


def get_proj_config(proj_path: str = None) -> configparser.RawConfigParser:
Expand Down

0 comments on commit 6bc7f84

Please sign in to comment.