Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Import setup from setuptools #285

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
3 changes: 1 addition & 2 deletions packages/mbed-greentea/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@

import os
from io import open
from distutils.core import setup
from setuptools import find_packages
from setuptools import find_packages, setup

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"
OWNER_NAMES = 'Anna Bridge, Qinghao Shi'
Expand Down
3 changes: 1 addition & 2 deletions packages/mbed-host-tests/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@
"""

import os
from distutils.core import setup
from io import open
from setuptools import find_packages
from setuptools import find_packages, setup

DESCRIPTION = "mbed tools used to flash, reset and supervise test execution for mbed-enabled devices"
OWNER_NAMES = 'Qinghao Shi'
Expand Down
3 changes: 1 addition & 2 deletions packages/mbed-ls/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@
"""

import os
from distutils.core import setup
from io import open
from setuptools import find_packages
from setuptools import find_packages, setup

DESCRIPTION = "mbed-ls is a Python module that detects and lists mbed-enabled devices connected to the host computer"
OWNER_NAMES = 'Graham Hammond, Mark Edgeworth'
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@

import os
import sys
from distutils.core import setup
from setuptools import find_packages
from setuptools import find_packages, setup

DESCRIPTION = "The tools to build, test, and work with Mbed OS"
OWNER_NAMES = "Jimmy Brisson, Brian Daniels"
Expand Down