Merge pull request #90 from parisk/feature/pypi

PyPI Distribution Code
pull/91/head
Emilio Monti 2013-10-22 05:30:51 -07:00
commit 00c641cf26
4 changed files with 36 additions and 1 deletions

6
.gitignore vendored
View File

@ -1,5 +1,11 @@
*.py[cod]
# Distribution dir
dist
# MANIFEST file
MANIFEST
# Private settings
private_settings.py

3
MANIFEST Normal file
View File

@ -0,0 +1,3 @@
# file GENERATED by distutils, do NOT edit
LICENSE
setup.py

2
MANIFEST.in Normal file
View File

@ -0,0 +1,2 @@
graft workspace_tools
include __init__.py LICENSE

24
setup.py Normal file
View File

@ -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)