Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions fm_agent/mbedfm.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def get_version():

def print_version():
print(get_version())
return True

def print_models():
print(list_fastmodels())
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

"""
mbed SDK
Copyright (c) 2018-2019 ARM Limited
Copyright (c) 2018-2021 ARM Limited

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -19,7 +19,7 @@
See the License for the specific language governing permissions and
limitations under the License.

Author: Przemyslaw Wirkus <Przemyslaw.Wirkus@arm.com>
Author: Qinghao Shi <Qinghao.shi@arm.com>
"""

import os
Expand All @@ -38,7 +38,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname), encoding="utf-8").read()

setup(name='mbed-fastmodel-agent',
version='1.0',
version='2.0',
description=DESCRIPTION,
long_description=read('README.md'),
entry_points = {'console_scripts': ['mbedfm=fm_agent.mbedfm:main']},
Expand All @@ -53,7 +53,7 @@ def read(fname):
include_package_data=True,
install_requires=[
"PrettyTable>=0.7.2",
"mbed-host-tests>=1.4.1",
"mbed-host-tests>=1.5.0",
"mbed-greentea>=1.5.0"
]
)
Expand Down