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
4 changes: 2 additions & 2 deletions mbed/mbed.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

# Copyright (c) 2016-2019 ARM Limited, All Rights Reserved
# Copyright (c) 2016-2019 Arm Limited, All Rights Reserved
# SPDX-License-Identifier: Apache-2.0

# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -53,7 +53,7 @@


# Application version
ver = '1.10.0'
ver = '1.10.1'

# Default paths to Mercurial and Git
hg_cmd = 'hg'
Expand Down
19 changes: 12 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016 ARM Limited, All Rights Reserved
# Copyright (c) 2016-2019 ARM Limited, All Rights Reserved
# SPDX-License-Identifier: Apache-2.0

# Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -18,12 +18,12 @@

setup(
name="mbed-cli",
version="1.10.0",
version="1.10.1",
description="Arm Mbed command line tool for repositories version control, publishing and updating code from remotely hosted repositories (GitHub, GitLab and mbed.com), and invoking Mbed OS own build system and export functions, among other operations",
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/ARMmbed/mbed-cli',
author='ARM mbed',
author='Arm mbed',
author_email='[email protected]',
packages=["mbed"],
entry_points={
Expand All @@ -32,15 +32,20 @@
'mbed-cli=mbed.mbed:main',
]
},
python_requires='>=2.7.10,!=3.0.*,!=3.1.*,<4',
python_requires='>=2.7.10, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.0, !=3.4.1, !=3.4.2, <4',
classifiers=(
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
),
install_requires=[
"pyserial>=3.0,<4.0",
"mbed-os-tools<0.1.0",
"mbed-os-tools>=0.0.9,<0.1.0",
]
)