Skip to content

Commit 78fa600

Browse files
committed
Update greentea setup script
1 parent e944358 commit 78fa600

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed

legacy/mbed-greentea/setup.py

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

3030

31-
LICENSE = open('LICENSE', encoding="utf-8").read()
3231
DESCRIPTION = "mbed 3.0 onwards test suite, codename Greentea. The test suite is a collection of tools that enable automated testing on mbed-enabled platforms"
3332
OWNER_NAMES = 'Anna Bridge, Azim Khan'
3433
@@ -45,20 +44,14 @@ def read(fname):
4544
author_email=OWNER_EMAILS,
4645
maintainer=OWNER_NAMES,
4746
maintainer_email=OWNER_EMAILS,
48-
url='https://github.com/ARMmbed/greentea',
47+
url='https://github.com/ARMmbed/mbed-os-tools',
4948
packages=find_packages(),
50-
license=LICENSE,
49+
license="Apache-2.0",
5150
test_suite = 'test',
5251
entry_points={
5352
"console_scripts": ["mbedgt=mbed_greentea.mbed_greentea_cli:main",],
5453
},
55-
install_requires=["PrettyTable>=0.7.2",
56-
"PySerial>=3.0",
57-
"mbed-host-tests>=1.2.0",
58-
"mbed-ls>=1.3.4",
59-
"junit-xml",
60-
"lockfile",
61-
"mock",
62-
"six",
63-
"colorama>=0.3,<0.5",
64-
"future"])
54+
install_requires=[
55+
"mbed-os-tools"
56+
]
57+
)

0 commit comments

Comments
 (0)