From e0034f204defa83a3f19d049369e5aab3cbb1bf6 Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Fri, 18 Oct 2013 11:10:22 +0100 Subject: [PATCH 01/14] Added first version of setup.py --- setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000000..560774fe2fe --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +from distutils.core import setup + +setup(name='Mbed', + version='0.0.1', + description='Package description', + long_description='Package long description', + author='Author name', + author_email='Author email', + maintainer='Maintainer name', + maintainer_email='Maintainer email', + url='Homepage url', + download_url='Pacjage download url', + license='Apache License string') From bb7088daa50a188045120fba09da3d6c66fffdef Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Fri, 18 Oct 2013 11:12:43 +0100 Subject: [PATCH 02/14] Added license text to setup.py description --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 560774fe2fe..63e8078a4d4 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,7 @@ from distutils.core import setup +license_text = open('LICENSE').read() + setup(name='Mbed', version='0.0.1', description='Package description', @@ -9,5 +11,5 @@ maintainer='Maintainer name', maintainer_email='Maintainer email', url='Homepage url', - download_url='Pacjage download url', - license='Apache License string') + download_url='Package download url', + license=license_text) From b270f0fa7c30a4ca251827d388be740132057228 Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Fri, 18 Oct 2013 11:15:28 +0100 Subject: [PATCH 03/14] setup.py updates --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 63e8078a4d4..bcfb38fa19d 100644 --- a/setup.py +++ b/setup.py @@ -10,6 +10,6 @@ author_email='Author email', maintainer='Maintainer name', maintainer_email='Maintainer email', - url='Homepage url', + url='https://github.com/mbedmicro/mbed', download_url='Package download url', license=license_text) From 6e750602ad8dded7f10f4e2208810f2ec5ad249d Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Fri, 18 Oct 2013 11:23:34 +0100 Subject: [PATCH 04/14] Formatted code for 10/10 rating from Pylint --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index bcfb38fa19d..121b1e77a26 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,11 @@ +""" +This module defines the attributes of the +PyPI package for the Mbed SDK +""" + from distutils.core import setup -license_text = open('LICENSE').read() +LICENSE = open('LICENSE').read() setup(name='Mbed', version='0.0.1', @@ -12,4 +17,4 @@ maintainer_email='Maintainer email', url='https://github.com/mbedmicro/mbed', download_url='Package download url', - license=license_text) + license=LICENSE) From a4ac8a734add877bfc18f89132dd3a3bd945a94d Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Mon, 21 Oct 2013 10:27:53 +0100 Subject: [PATCH 05/14] Added long description --- description.rst | 3 +++ setup.py | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 description.rst diff --git a/description.rst b/description.rst new file mode 100644 index 00000000000..bb6ed8686e7 --- /dev/null +++ b/description.rst @@ -0,0 +1,3 @@ +A set of Python scripts that can be used to compile programs written on top of the `mbed framework`_. It can also be used to export mbed projects to other build systems and IDEs (uVision, IAR, makefiles). + +.. _mbed framework: http://mbed.org diff --git a/setup.py b/setup.py index 121b1e77a26..ac068d2e04e 100644 --- a/setup.py +++ b/setup.py @@ -6,15 +6,15 @@ from distutils.core import setup LICENSE = open('LICENSE').read() +DESCRIPTION = open('description.rst') setup(name='Mbed', version='0.0.1', - description='Package description', - long_description='Package long description', + description='Build and test system for mbed', + long_description=DESCRIPTION, author='Author name', author_email='Author email', maintainer='Maintainer name', maintainer_email='Maintainer email', url='https://github.com/mbedmicro/mbed', - download_url='Package download url', license=LICENSE) From d903e6ae1c6d1a18ebb9b468bfedb61d22468078 Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Mon, 21 Oct 2013 10:54:17 +0100 Subject: [PATCH 06/14] Added Author and Maintainer names --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ac068d2e04e..13d6561b8ed 100644 --- a/setup.py +++ b/setup.py @@ -12,9 +12,9 @@ version='0.0.1', description='Build and test system for mbed', long_description=DESCRIPTION, - author='Author name', + author='Emilio Monti', author_email='Author email', - maintainer='Maintainer name', + maintainer='Bogdan Marinescu', maintainer_email='Maintainer email', url='https://github.com/mbedmicro/mbed', license=LICENSE) From 35359d3f0a28e6f4ff058677ac864800e5cae804 Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Mon, 21 Oct 2013 11:22:19 +0100 Subject: [PATCH 07/14] Added proper authors and maintainers --- setup.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 13d6561b8ed..e793de55586 100644 --- a/setup.py +++ b/setup.py @@ -7,14 +7,16 @@ LICENSE = open('LICENSE').read() DESCRIPTION = open('description.rst') +OWNER_NAMES = 'emilmont, bogdanm' +OWNER_EMAILS = 'Emilio.Monti@arm.com, Bogdan.Marinescu@arm.com' setup(name='Mbed', version='0.0.1', description='Build and test system for mbed', long_description=DESCRIPTION, - author='Emilio Monti', - author_email='Author email', - maintainer='Bogdan Marinescu', - maintainer_email='Maintainer email', + author=OWNER_NAMES, + author_email=OWNER_EMAILS, + maintainer=OWNER_NAMES, + maintainer_email=OWNER_EMAILS, url='https://github.com/mbedmicro/mbed', license=LICENSE) From a73db1091ad6dfb68cc15a89307a61c60876e3f8 Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Mon, 21 Oct 2013 11:22:57 +0100 Subject: [PATCH 08/14] Lowercased name --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e793de55586..e71bccd7f04 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ OWNER_NAMES = 'emilmont, bogdanm' OWNER_EMAILS = 'Emilio.Monti@arm.com, Bogdan.Marinescu@arm.com' -setup(name='Mbed', +setup(name='mbed', version='0.0.1', description='Build and test system for mbed', long_description=DESCRIPTION, From 7932ccd4f66508a356c4f70ee39afee848f63adc Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Mon, 21 Oct 2013 11:33:39 +0100 Subject: [PATCH 09/14] Updated version to 0.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e71bccd7f04..500b34a2b01 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ OWNER_EMAILS = 'Emilio.Monti@arm.com, Bogdan.Marinescu@arm.com' setup(name='mbed', - version='0.0.1', + version='0.1', description='Build and test system for mbed', long_description=DESCRIPTION, author=OWNER_NAMES, From fc39aaa42d2d7027971cd07bcdb77729ff012b31 Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Mon, 21 Oct 2013 11:40:11 +0100 Subject: [PATCH 10/14] Fixed description --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 500b34a2b01..6a38792137a 100644 --- a/setup.py +++ b/setup.py @@ -6,12 +6,12 @@ from distutils.core import setup LICENSE = open('LICENSE').read() -DESCRIPTION = open('description.rst') +DESCRIPTION = open('description.rst').read() OWNER_NAMES = 'emilmont, bogdanm' OWNER_EMAILS = 'Emilio.Monti@arm.com, Bogdan.Marinescu@arm.com' setup(name='mbed', - version='0.1', + version='0.1.1', description='Build and test system for mbed', long_description=DESCRIPTION, author=OWNER_NAMES, From ceb103b7b2dc72df4acbff7adab05a1f9be3c70d Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Mon, 21 Oct 2013 11:54:28 +0100 Subject: [PATCH 11/14] Added version 0.1.2 --- .gitignore | 5 ++++- setup.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 241c7708fde..3ee238383d2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,8 @@ *.py[cod] +# Distribution dir +dist + # Private settings private_settings.py @@ -53,4 +56,4 @@ uVision Project/ debug.log # Ignore OS X Desktop Services Store files -.DS_Store \ No newline at end of file +.DS_Store diff --git a/setup.py b/setup.py index 6a38792137a..2bb69816612 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ OWNER_EMAILS = 'Emilio.Monti@arm.com, Bogdan.Marinescu@arm.com' setup(name='mbed', - version='0.1.1', + version='0.1.2', description='Build and test system for mbed', long_description=DESCRIPTION, author=OWNER_NAMES, From a826819ae944c7d91339e61016d1db7c36eaf545 Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Mon, 21 Oct 2013 12:01:53 +0100 Subject: [PATCH 12/14] Version 0.1.4 --- MANIFEST | 5 +++++ MANIFEST.in | 2 ++ __init__.py | 0 setup.py | 2 +- 4 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 MANIFEST create mode 100644 MANIFEST.in create mode 100644 __init__.py diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 00000000000..f9b216779da --- /dev/null +++ b/MANIFEST @@ -0,0 +1,5 @@ +# file GENERATED by distutils, do NOT edit +LICENSE +__init__.py +description.rst +setup.py diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000000..dc51a33e019 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include __init__.py LICENSE description.rst +graft workspace_tools libraries diff --git a/__init__.py b/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/setup.py b/setup.py index 2bb69816612..79131951109 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ OWNER_EMAILS = 'Emilio.Monti@arm.com, Bogdan.Marinescu@arm.com' setup(name='mbed', - version='0.1.2', + version='0.1.4', description='Build and test system for mbed', long_description=DESCRIPTION, author=OWNER_NAMES, From 69d823fcc1e6cf52ddc2cba82223fea1d643ff76 Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Mon, 21 Oct 2013 14:49:00 +0100 Subject: [PATCH 13/14] Issued version 0.1.5 --- MANIFEST | 132 ++++++++++++++++++++++++++++++++++++++++++++++++++++ MANIFEST.in | 2 +- setup.py | 2 +- 3 files changed, 134 insertions(+), 2 deletions(-) diff --git a/MANIFEST b/MANIFEST index f9b216779da..e1398a5a9bd 100644 --- a/MANIFEST +++ b/MANIFEST @@ -3,3 +3,135 @@ LICENSE __init__.py description.rst setup.py +workspace_tools/__init__.py +workspace_tools/autotest.py +workspace_tools/build.py +workspace_tools/build_api.py +workspace_tools/build_release.py +workspace_tools/client.py +workspace_tools/export_test.py +workspace_tools/hooks.py +workspace_tools/libraries.py +workspace_tools/make.py +workspace_tools/options.py +workspace_tools/patch.py +workspace_tools/paths.py +workspace_tools/project.py +workspace_tools/server.py +workspace_tools/settings.py +workspace_tools/size.py +workspace_tools/syms.py +workspace_tools/synch.py +workspace_tools/targets.py +workspace_tools/tests.py +workspace_tools/utils.py +workspace_tools/data/__init__.py +workspace_tools/data/example_test_spec.json +workspace_tools/data/support.py +workspace_tools/data/rpc/RPCClasses.h +workspace_tools/data/rpc/class.cpp +workspace_tools/debugger/README.md +workspace_tools/debugger/__init__.py +workspace_tools/debugger/setup.py +workspace_tools/debugger/binaries/l1_kl25z.bin +workspace_tools/debugger/binaries/l1_lpc11u24.bin +workspace_tools/debugger/binaries/l1_lpc1768.bin +workspace_tools/debugger/binaries/l1_lpc800.bin +workspace_tools/debugger/elf_files/lpc11u24_l1_gcc_arm.elf +workspace_tools/debugger/elf_files/lpc1768_l1_gcc_arm.elf +workspace_tools/debugger/pyOCD/__init__.py +workspace_tools/debugger/pyOCD/board/__init__.py +workspace_tools/debugger/pyOCD/board/board.py +workspace_tools/debugger/pyOCD/board/mbed_board.py +workspace_tools/debugger/pyOCD/flash/__init__.py +workspace_tools/debugger/pyOCD/flash/flash.py +workspace_tools/debugger/pyOCD/flash/flash_kl25z.py +workspace_tools/debugger/pyOCD/flash/flash_lpc11u24.py +workspace_tools/debugger/pyOCD/flash/flash_lpc1768.py +workspace_tools/debugger/pyOCD/flash/flash_lpc800.py +workspace_tools/debugger/pyOCD/gdbserver/__init__.py +workspace_tools/debugger/pyOCD/gdbserver/gdb_socket.py +workspace_tools/debugger/pyOCD/gdbserver/gdb_websocket.py +workspace_tools/debugger/pyOCD/gdbserver/gdbserver.py +workspace_tools/debugger/pyOCD/interface/__init__.py +workspace_tools/debugger/pyOCD/interface/interface.py +workspace_tools/debugger/pyOCD/interface/pyusb_backend.py +workspace_tools/debugger/pyOCD/interface/pywinusb_backend.py +workspace_tools/debugger/pyOCD/target/__init__.py +workspace_tools/debugger/pyOCD/target/cortex_m.py +workspace_tools/debugger/pyOCD/target/target.py +workspace_tools/debugger/pyOCD/target/target_kl25z.py +workspace_tools/debugger/pyOCD/target/target_lpc11u24.py +workspace_tools/debugger/pyOCD/target/target_lpc1768.py +workspace_tools/debugger/pyOCD/target/target_lpc800.py +workspace_tools/debugger/pyOCD/transport/__init__.py +workspace_tools/debugger/pyOCD/transport/cmsis_dap.py +workspace_tools/debugger/pyOCD/transport/cmsis_dap_core.py +workspace_tools/debugger/pyOCD/transport/transport.py +workspace_tools/debugger/test/basic_test.py +workspace_tools/debugger/test/gdb_test.py +workspace_tools/dev/__init__.py +workspace_tools/dev/dsp_fir.py +workspace_tools/dev/rpc_classes.py +workspace_tools/export/__init__.py +workspace_tools/export/codered.py +workspace_tools/export/codered_lpc1768_cproject.tmpl +workspace_tools/export/codered_lpc1768_project.tmpl +workspace_tools/export/codered_lpc4088_cproject.tmpl +workspace_tools/export/codered_lpc4088_project.tmpl +workspace_tools/export/codesourcery.py +workspace_tools/export/codesourcery_lpc1768.tmpl +workspace_tools/export/ds5_5.py +workspace_tools/export/ds5_5_lpc11u24.cproject.tmpl +workspace_tools/export/ds5_5_lpc11u24.launch.tmpl +workspace_tools/export/ds5_5_lpc11u24.project.tmpl +workspace_tools/export/ds5_5_lpc1768.cproject.tmpl +workspace_tools/export/ds5_5_lpc1768.launch.tmpl +workspace_tools/export/ds5_5_lpc1768.project.tmpl +workspace_tools/export/exporters.py +workspace_tools/export/gcc_arm_lpc1768.tmpl +workspace_tools/export/gccarm.py +workspace_tools/export/iar.ewp.tmpl +workspace_tools/export/iar.eww.tmpl +workspace_tools/export/iar.py +workspace_tools/export/uvision4.py +workspace_tools/export/uvision4_kl25z.uvopt.tmpl +workspace_tools/export/uvision4_kl25z.uvproj.tmpl +workspace_tools/export/uvision4_lpc1114.uvopt.tmpl +workspace_tools/export/uvision4_lpc1114.uvproj.tmpl +workspace_tools/export/uvision4_lpc11c24.uvopt.tmpl +workspace_tools/export/uvision4_lpc11c24.uvproj.tmpl +workspace_tools/export/uvision4_lpc11u24.uvopt.tmpl +workspace_tools/export/uvision4_lpc11u24.uvproj.tmpl +workspace_tools/export/uvision4_lpc1347.uvopt.tmpl +workspace_tools/export/uvision4_lpc1347.uvproj.tmpl +workspace_tools/export/uvision4_lpc1768.uvopt.tmpl +workspace_tools/export/uvision4_lpc1768.uvproj.tmpl +workspace_tools/export/uvision4_lpc4088.uvopt.tmpl +workspace_tools/export/uvision4_lpc4088.uvproj.tmpl +workspace_tools/export/uvision4_lpc812.uvopt.tmpl +workspace_tools/export/uvision4_lpc812.uvproj.tmpl +workspace_tools/host_tests/__init__.py +workspace_tools/host_tests/echo.py +workspace_tools/host_tests/host_test.py +workspace_tools/host_tests/mbedrpc.py +workspace_tools/host_tests/net_test.py +workspace_tools/host_tests/rpc.py +workspace_tools/host_tests/tcpecho_client.py +workspace_tools/host_tests/tcpecho_server.py +workspace_tools/host_tests/tcpecho_server_loop.py +workspace_tools/host_tests/udpecho_client.py +workspace_tools/host_tests/udpecho_server.py +workspace_tools/host_tests/example/BroadcastReceive.py +workspace_tools/host_tests/example/BroadcastSend.py +workspace_tools/host_tests/example/MulticastReceive.py +workspace_tools/host_tests/example/MulticastSend.py +workspace_tools/host_tests/example/TCPEchoClient.py +workspace_tools/host_tests/example/TCPEchoServer.py +workspace_tools/host_tests/example/UDPEchoClient.py +workspace_tools/host_tests/example/UDPEchoServer.py +workspace_tools/host_tests/example/__init__.py +workspace_tools/toolchains/__init__.py +workspace_tools/toolchains/arm.py +workspace_tools/toolchains/gcc.py +workspace_tools/toolchains/iar.py diff --git a/MANIFEST.in b/MANIFEST.in index dc51a33e019..2d5cb978546 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ include __init__.py LICENSE description.rst -graft workspace_tools libraries +graft workspace_tools diff --git a/setup.py b/setup.py index 79131951109..2365e404d6d 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ OWNER_EMAILS = 'Emilio.Monti@arm.com, Bogdan.Marinescu@arm.com' setup(name='mbed', - version='0.1.4', + version='0.1.5', description='Build and test system for mbed', long_description=DESCRIPTION, author=OWNER_NAMES, From d2318804f10c80440ae8394d2a36ed02c0d3a1d5 Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Tue, 22 Oct 2013 12:13:04 +0100 Subject: [PATCH 14/14] Restructuring --- .gitignore | 3 ++ MANIFEST | 134 ------------------------------------------------ MANIFEST.in | 2 +- __init__.py | 0 description.rst | 3 -- setup.py | 6 ++- 6 files changed, 8 insertions(+), 140 deletions(-) delete mode 100644 __init__.py delete mode 100644 description.rst diff --git a/.gitignore b/.gitignore index 3ee238383d2..850758cf1e6 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,9 @@ # Distribution dir dist +# MANIFEST file +MANIFEST + # Private settings private_settings.py diff --git a/MANIFEST b/MANIFEST index e1398a5a9bd..fd9c09e2410 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,137 +1,3 @@ # file GENERATED by distutils, do NOT edit LICENSE -__init__.py -description.rst setup.py -workspace_tools/__init__.py -workspace_tools/autotest.py -workspace_tools/build.py -workspace_tools/build_api.py -workspace_tools/build_release.py -workspace_tools/client.py -workspace_tools/export_test.py -workspace_tools/hooks.py -workspace_tools/libraries.py -workspace_tools/make.py -workspace_tools/options.py -workspace_tools/patch.py -workspace_tools/paths.py -workspace_tools/project.py -workspace_tools/server.py -workspace_tools/settings.py -workspace_tools/size.py -workspace_tools/syms.py -workspace_tools/synch.py -workspace_tools/targets.py -workspace_tools/tests.py -workspace_tools/utils.py -workspace_tools/data/__init__.py -workspace_tools/data/example_test_spec.json -workspace_tools/data/support.py -workspace_tools/data/rpc/RPCClasses.h -workspace_tools/data/rpc/class.cpp -workspace_tools/debugger/README.md -workspace_tools/debugger/__init__.py -workspace_tools/debugger/setup.py -workspace_tools/debugger/binaries/l1_kl25z.bin -workspace_tools/debugger/binaries/l1_lpc11u24.bin -workspace_tools/debugger/binaries/l1_lpc1768.bin -workspace_tools/debugger/binaries/l1_lpc800.bin -workspace_tools/debugger/elf_files/lpc11u24_l1_gcc_arm.elf -workspace_tools/debugger/elf_files/lpc1768_l1_gcc_arm.elf -workspace_tools/debugger/pyOCD/__init__.py -workspace_tools/debugger/pyOCD/board/__init__.py -workspace_tools/debugger/pyOCD/board/board.py -workspace_tools/debugger/pyOCD/board/mbed_board.py -workspace_tools/debugger/pyOCD/flash/__init__.py -workspace_tools/debugger/pyOCD/flash/flash.py -workspace_tools/debugger/pyOCD/flash/flash_kl25z.py -workspace_tools/debugger/pyOCD/flash/flash_lpc11u24.py -workspace_tools/debugger/pyOCD/flash/flash_lpc1768.py -workspace_tools/debugger/pyOCD/flash/flash_lpc800.py -workspace_tools/debugger/pyOCD/gdbserver/__init__.py -workspace_tools/debugger/pyOCD/gdbserver/gdb_socket.py -workspace_tools/debugger/pyOCD/gdbserver/gdb_websocket.py -workspace_tools/debugger/pyOCD/gdbserver/gdbserver.py -workspace_tools/debugger/pyOCD/interface/__init__.py -workspace_tools/debugger/pyOCD/interface/interface.py -workspace_tools/debugger/pyOCD/interface/pyusb_backend.py -workspace_tools/debugger/pyOCD/interface/pywinusb_backend.py -workspace_tools/debugger/pyOCD/target/__init__.py -workspace_tools/debugger/pyOCD/target/cortex_m.py -workspace_tools/debugger/pyOCD/target/target.py -workspace_tools/debugger/pyOCD/target/target_kl25z.py -workspace_tools/debugger/pyOCD/target/target_lpc11u24.py -workspace_tools/debugger/pyOCD/target/target_lpc1768.py -workspace_tools/debugger/pyOCD/target/target_lpc800.py -workspace_tools/debugger/pyOCD/transport/__init__.py -workspace_tools/debugger/pyOCD/transport/cmsis_dap.py -workspace_tools/debugger/pyOCD/transport/cmsis_dap_core.py -workspace_tools/debugger/pyOCD/transport/transport.py -workspace_tools/debugger/test/basic_test.py -workspace_tools/debugger/test/gdb_test.py -workspace_tools/dev/__init__.py -workspace_tools/dev/dsp_fir.py -workspace_tools/dev/rpc_classes.py -workspace_tools/export/__init__.py -workspace_tools/export/codered.py -workspace_tools/export/codered_lpc1768_cproject.tmpl -workspace_tools/export/codered_lpc1768_project.tmpl -workspace_tools/export/codered_lpc4088_cproject.tmpl -workspace_tools/export/codered_lpc4088_project.tmpl -workspace_tools/export/codesourcery.py -workspace_tools/export/codesourcery_lpc1768.tmpl -workspace_tools/export/ds5_5.py -workspace_tools/export/ds5_5_lpc11u24.cproject.tmpl -workspace_tools/export/ds5_5_lpc11u24.launch.tmpl -workspace_tools/export/ds5_5_lpc11u24.project.tmpl -workspace_tools/export/ds5_5_lpc1768.cproject.tmpl -workspace_tools/export/ds5_5_lpc1768.launch.tmpl -workspace_tools/export/ds5_5_lpc1768.project.tmpl -workspace_tools/export/exporters.py -workspace_tools/export/gcc_arm_lpc1768.tmpl -workspace_tools/export/gccarm.py -workspace_tools/export/iar.ewp.tmpl -workspace_tools/export/iar.eww.tmpl -workspace_tools/export/iar.py -workspace_tools/export/uvision4.py -workspace_tools/export/uvision4_kl25z.uvopt.tmpl -workspace_tools/export/uvision4_kl25z.uvproj.tmpl -workspace_tools/export/uvision4_lpc1114.uvopt.tmpl -workspace_tools/export/uvision4_lpc1114.uvproj.tmpl -workspace_tools/export/uvision4_lpc11c24.uvopt.tmpl -workspace_tools/export/uvision4_lpc11c24.uvproj.tmpl -workspace_tools/export/uvision4_lpc11u24.uvopt.tmpl -workspace_tools/export/uvision4_lpc11u24.uvproj.tmpl -workspace_tools/export/uvision4_lpc1347.uvopt.tmpl -workspace_tools/export/uvision4_lpc1347.uvproj.tmpl -workspace_tools/export/uvision4_lpc1768.uvopt.tmpl -workspace_tools/export/uvision4_lpc1768.uvproj.tmpl -workspace_tools/export/uvision4_lpc4088.uvopt.tmpl -workspace_tools/export/uvision4_lpc4088.uvproj.tmpl -workspace_tools/export/uvision4_lpc812.uvopt.tmpl -workspace_tools/export/uvision4_lpc812.uvproj.tmpl -workspace_tools/host_tests/__init__.py -workspace_tools/host_tests/echo.py -workspace_tools/host_tests/host_test.py -workspace_tools/host_tests/mbedrpc.py -workspace_tools/host_tests/net_test.py -workspace_tools/host_tests/rpc.py -workspace_tools/host_tests/tcpecho_client.py -workspace_tools/host_tests/tcpecho_server.py -workspace_tools/host_tests/tcpecho_server_loop.py -workspace_tools/host_tests/udpecho_client.py -workspace_tools/host_tests/udpecho_server.py -workspace_tools/host_tests/example/BroadcastReceive.py -workspace_tools/host_tests/example/BroadcastSend.py -workspace_tools/host_tests/example/MulticastReceive.py -workspace_tools/host_tests/example/MulticastSend.py -workspace_tools/host_tests/example/TCPEchoClient.py -workspace_tools/host_tests/example/TCPEchoServer.py -workspace_tools/host_tests/example/UDPEchoClient.py -workspace_tools/host_tests/example/UDPEchoServer.py -workspace_tools/host_tests/example/__init__.py -workspace_tools/toolchains/__init__.py -workspace_tools/toolchains/arm.py -workspace_tools/toolchains/gcc.py -workspace_tools/toolchains/iar.py diff --git a/MANIFEST.in b/MANIFEST.in index 2d5cb978546..8294764a5c5 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ -include __init__.py LICENSE description.rst graft workspace_tools +include __init__.py LICENSE diff --git a/__init__.py b/__init__.py deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/description.rst b/description.rst deleted file mode 100644 index bb6ed8686e7..00000000000 --- a/description.rst +++ /dev/null @@ -1,3 +0,0 @@ -A set of Python scripts that can be used to compile programs written on top of the `mbed framework`_. It can also be used to export mbed projects to other build systems and IDEs (uVision, IAR, makefiles). - -.. _mbed framework: http://mbed.org diff --git a/setup.py b/setup.py index 2365e404d6d..9ecbcfef058 100644 --- a/setup.py +++ b/setup.py @@ -6,12 +6,14 @@ from distutils.core import setup LICENSE = open('LICENSE').read() -DESCRIPTION = open('description.rst').read() +DESCRIPTION = """A set of Python scripts that can be used to compile programs written on top of the `mbed framework`_. It can also be used to export mbed projects to other build systems and IDEs (uVision, IAR, makefiles). + +.. _mbed framework: http://mbed.org""" OWNER_NAMES = 'emilmont, bogdanm' OWNER_EMAILS = 'Emilio.Monti@arm.com, Bogdan.Marinescu@arm.com' setup(name='mbed', - version='0.1.5', + version='0.1.6', description='Build and test system for mbed', long_description=DESCRIPTION, author=OWNER_NAMES,