Skip to content

Commit

Permalink
Added mo.py to wheel packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mryzhov committed Mar 10, 2021
1 parent d7e6e47 commit 74b308d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[options]
py_modules =
mo
mo_tf
mo_caffe
mo_mxnet
Expand Down
2 changes: 1 addition & 1 deletion model-optimizer/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
for name in os.listdir():
if re.match('requirements(.*)\.txt', name):
requirements_txt.append(name)
if re.match('mo_(.*)\.py', name):
if re.match('mo(.*)\.py', name):
py_modules.append(name.split('.')[0])

# Minimal set of dependencies
Expand Down

0 comments on commit 74b308d

Please sign in to comment.