Skip to content

Commit ac36ed1

Browse files
committed
Update htrun setup script
1 parent 2626c94 commit ac36ed1

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

legacy/mbed-host-tests/setup.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
from setuptools import find_packages
2929

3030
DESCRIPTION = "mbed tools used to flash, reset and supervise test execution for mbed-enabled devices"
31-
OWNER_NAMES = 'Przemyslaw Wirkus, Azim Khan, Stefan Gutmann'
32-
OWNER_EMAILS = 'Przemyslaw.Wirkus@arm.com, [email protected], Stefan.Gutmann@arm.com'
31+
OWNER_NAMES = 'Jimmy Brisson, Brian Daniels'
32+
OWNER_EMAILS = 'Jimmy.Brisson@arm.com, Brian.Daniels@arm.com'
3333

3434

3535
# Utility function to cat in a file (used for the README)
@@ -45,7 +45,7 @@ def read(fname):
4545
author_email=OWNER_EMAILS,
4646
maintainer=OWNER_NAMES,
4747
maintainer_email=OWNER_EMAILS,
48-
url='https://github.com/ARMmbed/htrun',
48+
url='https://github.com/ARMmbed/mbed-os-tools',
4949
packages=find_packages(),
5050
license="Apache-2.0",
5151
test_suite = 'test',
@@ -54,10 +54,10 @@ def read(fname):
5454
["mbedhtrun=mbed_host_tests.mbedhtrun:main",
5555
"mbedflsh=mbed_host_tests.mbedflsh:main"],
5656
},
57-
install_requires=["PySerial>=3.0",
58-
"PrettyTable>=0.7.2",
59-
"requests",
60-
"mbed-ls>=1.0.0",
61-
"pyocd>=0.14.0",
62-
"intelhex",
63-
"future"])
57+
install_requires=[
58+
"mbed-os-tools==0.0.1"
59+
],
60+
test_requires=[
61+
"mock>=2"
62+
]
63+
)

0 commit comments

Comments
 (0)