mirror of https://github.com/ARMmbed/mbed-os.git
16 lines
446 B
Python
16 lines
446 B
Python
from distutils.core import setup
|
|
|
|
license_text = open('LICENSE').read()
|
|
|
|
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='Package download url',
|
|
license=license_text)
|