Added license text to setup.py description

pull/90/head
Paris Kasidiaris 2013-10-18 11:12:43 +01:00
parent e0034f204d
commit bb7088daa5
1 changed files with 4 additions and 2 deletions

View File

@ -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 @@ setup(name='Mbed',
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)