Skip to content

Commit 0da1e36

Browse files
committed
Updates to support virtual env
1 parent 07dcfe6 commit 0da1e36

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

mbed/mbed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# Default paths to Mercurial and Git
3434
hg_cmd = 'hg'
3535
git_cmd = 'git'
36-
ver = '0.5.0'
36+
ver = '0.5.1'
3737

3838
ignores = [
3939
# Version control folders

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,15 @@ def read(fname):
1919
setup(
2020
name="mbed-cli",
2121
packages=["mbed"],
22-
version="0.5.0",
22+
version="0.5.1",
2323
url='http://github.com/ARMmbed/mbed-cli',
2424
author='ARM mbed',
2525
author_email='[email protected]',
2626
license='Apache-2.0',
2727
entry_points={
2828
'console_scripts': [
29-
'mbed=mbed.mbed',
30-
'mbed-cli=mbed.mbed',
31-
'neo=mbed.mbed'
29+
'mbed=mbed.mbed:main',
30+
'mbed-cli=mbed.mbed:main',
3231
]
3332
},
3433
long_description=read('pypi_readme.rst'),

0 commit comments

Comments
 (0)