diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-06-18 14:30:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-18 14:30:24 -0400 |
commit | db32864ce7029d758f57729cc2f75e051a28d0a2 (patch) | |
tree | f3ac60d9c826a9ad5ef5bc4d199efaddae156ba6 /tmk_core/tool/mbed/mbed-sdk/setup.py | |
parent | 1923cffd41d9d71cd9f434092654dba05513137b (diff) |
Cleans up quantum/keymap situation, removes extra lufa folders (#416)
* sorts out keycodes
* move midi around
* remove mbed
* replaces keymap with qmk/keymap_common
* fixes keymap.h
* keymap, config, quantum rearrange
* removes unneeded lufa stuff
Diffstat (limited to 'tmk_core/tool/mbed/mbed-sdk/setup.py')
-rw-r--r-- | tmk_core/tool/mbed/mbed-sdk/setup.py | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/tmk_core/tool/mbed/mbed-sdk/setup.py b/tmk_core/tool/mbed/mbed-sdk/setup.py deleted file mode 100644 index eb420b96b4..0000000000 --- a/tmk_core/tool/mbed/mbed-sdk/setup.py +++ /dev/null @@ -1,49 +0,0 @@ -""" -This module defines the attributes of the -PyPI package for the Mbed SDK -""" - -from shutil import copyfileobj -from os.path import isfile, join -from tempfile import TemporaryFile -from setuptools import find_packages -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' - -# If private_settings.py exists in workspace_tools, read it in a temporary file -# so it can be restored later -private_settings = join('workspace_tools', 'private_settings.py') -backup = None -if isfile(private_settings): - backup = TemporaryFile() - with open(private_settings, "rb") as f: - copyfileobj(f, backup) - -# Create the correct private_settings.py for the distribution -with open(private_settings, "wt") as f: - f.write("from mbed_settings import *\n") - -setup(name='mbed-tools', - version='0.1.14', - 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', - packages=find_packages(), - license=LICENSE, - install_requires=["PrettyTable>=0.7.2", "PySerial>=2.7", "IntelHex>=1.3", "colorama>=0.3.3", "Jinja2>=2.7.3"]) - -# Restore previous private_settings if needed -if backup: - backup.seek(0) - with open(private_settings, "wb") as f: - copyfileobj(backup, f) |