forked from openvinotoolkit/model_server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Client library - simplify make_client signature (openvinotoolkit#969)
- Loading branch information
Showing
20 changed files
with
707 additions
and
720 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,5 +16,7 @@ | |
# limitations under the License. | ||
# | ||
|
||
set -e | ||
|
||
python scripts/generate_api.py | ||
mv __init__.py ovmsclient/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,18 +34,18 @@ def finalize_options(self): | |
... | ||
|
||
def build_tfs_api(self): | ||
subprocess.run(["sh", "./scripts/build_tfs_api.sh"]) | ||
subprocess.run(["sh", "./scripts/build_tfs_api.sh"], check=True) | ||
|
||
def build_ovmsclient_api(self): | ||
subprocess.run(["sh", "./scripts/build_ovmsclient_api.sh"]) | ||
subprocess.run(["sh", "./scripts/build_ovmsclient_api.sh"], check=True) | ||
|
||
def run(self): | ||
self.build_tfs_api() | ||
|
||
|
||
setuptools.setup( | ||
name='ovmsclient', | ||
version='0.1', | ||
version='0.2', | ||
scripts=[] , | ||
author="Intel", | ||
author_email="[email protected]", | ||
|
Oops, something went wrong.