2013-10-18 10:23:34 +00:00
"""
This module defines the attributes of the
PyPI package for the Mbed SDK
"""
2013-10-18 10:10:22 +00:00
from distutils . core import setup
2013-10-18 10:23:34 +00:00
LICENSE = open ( ' LICENSE ' ) . read ( )
2013-10-22 11:13:04 +00:00
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 """
2013-10-21 10:22:19 +00:00
OWNER_NAMES = ' emilmont, bogdanm '
OWNER_EMAILS = ' Emilio.Monti@arm.com, Bogdan.Marinescu@arm.com '
2013-10-18 10:12:43 +00:00
2013-10-21 10:22:57 +00:00
setup ( name = ' mbed ' ,
2013-10-22 11:13:04 +00:00
version = ' 0.1.6 ' ,
2013-10-21 09:27:53 +00:00
description = ' Build and test system for mbed ' ,
long_description = DESCRIPTION ,
2013-10-21 10:22:19 +00:00
author = OWNER_NAMES ,
author_email = OWNER_EMAILS ,
maintainer = OWNER_NAMES ,
maintainer_email = OWNER_EMAILS ,
2013-10-18 10:15:28 +00:00
url = ' https://github.com/mbedmicro/mbed ' ,
2013-10-18 10:23:34 +00:00
license = LICENSE )