From 6e750602ad8dded7f10f4e2208810f2ec5ad249d Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Fri, 18 Oct 2013 11:23:34 +0100 Subject: [PATCH] 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 bcfb38fa19..121b1e77a2 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 @@ setup(name='Mbed', maintainer_email='Maintainer email', url='https://github.com/mbedmicro/mbed', download_url='Package download url', - license=license_text) + license=LICENSE)