mirror of https://github.com/ARMmbed/mbed-os.git
commit
00c641cf26
|
@ -1,5 +1,11 @@
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
|
|
||||||
|
# Distribution dir
|
||||||
|
dist
|
||||||
|
|
||||||
|
# MANIFEST file
|
||||||
|
MANIFEST
|
||||||
|
|
||||||
# Private settings
|
# Private settings
|
||||||
private_settings.py
|
private_settings.py
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
# file GENERATED by distutils, do NOT edit
|
||||||
|
LICENSE
|
||||||
|
setup.py
|
|
@ -0,0 +1,2 @@
|
||||||
|
graft workspace_tools
|
||||||
|
include __init__.py LICENSE
|
|
@ -0,0 +1,24 @@
|
||||||
|
"""
|
||||||
|
This module defines the attributes of the
|
||||||
|
PyPI package for the Mbed SDK
|
||||||
|
"""
|
||||||
|
|
||||||
|
from distutils.core import setup
|
||||||
|
|
||||||
|
LICENSE = open('LICENSE').read()
|
||||||
|
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"""
|
||||||
|
OWNER_NAMES = 'emilmont, bogdanm'
|
||||||
|
OWNER_EMAILS = 'Emilio.Monti@arm.com, Bogdan.Marinescu@arm.com'
|
||||||
|
|
||||||
|
setup(name='mbed',
|
||||||
|
version='0.1.6',
|
||||||
|
description='Build and test system for mbed',
|
||||||
|
long_description=DESCRIPTION,
|
||||||
|
author=OWNER_NAMES,
|
||||||
|
author_email=OWNER_EMAILS,
|
||||||
|
maintainer=OWNER_NAMES,
|
||||||
|
maintainer_email=OWNER_EMAILS,
|
||||||
|
url='https://github.com/mbedmicro/mbed',
|
||||||
|
license=LICENSE)
|
Loading…
Reference in New Issue