mirror of https://github.com/ARMmbed/mbed-os.git
14 lines
418 B
Python
14 lines
418 B
Python
|
from distutils.core import setup
|
||
|
|
||
|
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='Pacjage download url',
|
||
|
license='Apache License string')
|