mirror of https://github.com/ARMmbed/mbed-os.git
Added long description
parent
6e750602ad
commit
a4ac8a734a
|
@ -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
|
6
setup.py
6
setup.py
|
@ -6,15 +6,15 @@ PyPI package for the Mbed SDK
|
|||
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)
|
||||
|
|
Loading…
Reference in New Issue