Skip to content

Commit

Permalink
update to v0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
yexiang1992 committed Mar 6, 2023
1 parent f3219b8 commit b16964e
Show file tree
Hide file tree
Showing 44 changed files with 49,419 additions and 3 deletions.
1 change: 1 addition & 0 deletions build/lib/opstool/__about__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.4.2"
18 changes: 18 additions & 0 deletions build/lib/opstool/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from .__about__ import __version__
from .utils import load_ops_examples
from . import vis, preprocessing, analysis


membs = dict()
for mod in (vis, preprocessing, analysis):
for name in mod.__all__:
if hasattr(mod, name):
membs[name] = getattr(mod, name)
cur_dict = globals()
cur_dict.update(membs)
membs_all = vis.__all__ + preprocessing.__all__ + analysis.__all__

__all__ = [
"load_ops_examples",
"__version__",
] + membs_all
3 changes: 3 additions & 0 deletions build/lib/opstool/analysis/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from ._smart_analyze import SmartAnalyze

__all__ = ["SmartAnalyze"]
Loading

0 comments on commit b16964e

Please sign in to comment.