|
1 |
| -# Copyright (c) 2016 ARM Limited, All Rights Reserved |
| 1 | +# Copyright (c) 2016-2019 ARM Limited, All Rights Reserved |
2 | 2 | # SPDX-License-Identifier: Apache-2.0
|
3 | 3 |
|
4 | 4 | # Licensed under the Apache License, Version 2.0 (the "License");
|
|
18 | 18 |
|
19 | 19 | setup(
|
20 | 20 | name="mbed-cli",
|
21 |
| - version="1.10.0", |
| 21 | + version="1.10.1", |
22 | 22 | 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",
|
23 | 23 | long_description=long_description,
|
24 | 24 | long_description_content_type="text/markdown",
|
25 | 25 | url='http://github.com/ARMmbed/mbed-cli',
|
26 |
| - author='ARM mbed', |
| 26 | + author='Arm mbed', |
27 | 27 |
|
28 | 28 | packages=["mbed"],
|
29 | 29 | entry_points={
|
|
32 | 32 | 'mbed-cli=mbed.mbed:main',
|
33 | 33 | ]
|
34 | 34 | },
|
35 |
| - python_requires='>=2.7.10,!=3.0.*,!=3.1.*,<4', |
| 35 | + python_requires='>=2.7.10, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.0, !=3.4.1, !=3.4.2, <4', |
36 | 36 | classifiers=(
|
37 |
| - "Programming Language :: Python :: 2", |
38 |
| - "Programming Language :: Python :: 3", |
| 37 | + 'Programming Language :: Python :: 2', |
| 38 | + 'Programming Language :: Python :: 2.7', |
| 39 | + 'Programming Language :: Python :: 3', |
| 40 | + 'Programming Language :: Python :: 3.4', |
| 41 | + 'Programming Language :: Python :: 3.5', |
| 42 | + 'Programming Language :: Python :: 3.6', |
| 43 | + 'Programming Language :: Python :: 3.7', |
39 | 44 | "License :: OSI Approved :: Apache Software License",
|
40 | 45 | "Operating System :: OS Independent",
|
41 | 46 | ),
|
42 | 47 | install_requires=[
|
43 | 48 | "pyserial>=3.0,<4.0",
|
44 |
| - "mbed-os-tools<0.1.0", |
| 49 | + "mbed-os-tools>=0.0.9,<0.1.0", |
45 | 50 | ]
|
46 | 51 | )
|
0 commit comments