Update PlatformIO slogan

This commit is contained in:
Ivan Kravets
2015-06-29 22:26:37 +03:00
parent f6aed63055
commit 218a978f6d
4 changed files with 23 additions and 15 deletions

View File

@ -38,15 +38,16 @@ PlatformIO
`Reddit <http://www.reddit.com/r/platformio/>`_ |
`Twitter <https://twitter.com/PlatformIO_Org>`_
*Atmel AVR & SAM, Espressif, Freescale Kinetis, Nordic nRF51, NXP LPC,
Silicon Labs EFM32, ST STM32, TI MSP430 & Tiva, Teensy, Arduino, mbed,
libOpenCM3, etc.*
.. image:: https://raw.githubusercontent.com/platformio/platformio/develop/docs/_static/platformio-logo.png
:target: http://platformio.org
`PlatformIO <http://platformio.org>`_ is a cross-platform code builder
and the missing library manager.
and the missing library manager (Ready for embedded development, IDE and
Continuous integration, Arduino and MBED compatible).
*Atmel AVR & SAM, Espressif, Freescale Kinetis, Nordic nRF51, NXP LPC,
Silicon Labs EFM32, ST STM32, TI MSP430 & Tiva, Teensy, Arduino, mbed,
libOpenCM3, etc.*
* `Get Started <http://platformio.org/#!/get-started>`_
* `Web 2.0 Library Search <http://platformio.org/#!/lib>`_

View File

@ -1,5 +1,8 @@
PlatformIO: A cross-platform code builder and the missing library manager
=========================================================================
PlatformIO is a cross-platform code builder and the missing library manager
===========================================================================
**Ready for embedded development, IDE and Continuous integration, Arduino and
MBED compatible**
*Atmel AVR & SAM, Espressif, Freescale Kinetis, Nordic nRF51, NXP LPC,
Silicon Labs EFM32, ST STM32, TI MSP430 & Tiva, Teensy, Arduino, mbed,

View File

@ -1,14 +1,15 @@
# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
VERSION = (2, 2, "0.dev6")
VERSION = (2, 2, "0a1")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"
__description__ = ("A cross-platform code builder and the missing library "
"manager (Atmel AVR & SAM, Espressif, Freescale Kinetis, "
"Nordic nRF51, NXP LPC, Silicon Labs EFM32, ST STM32, "
"TI MSP430 & Tiva, Teensy, Arduino, mbed, libOpenCM3, etc)")
__description__ = (
"Cross-platform code builder and the missing library manager "
"(Ready for embedded development, IDE and Continuous integration, "
"Arduino and MBED compatible)"
)
__url__ = "http://platformio.org"
__author__ = "Ivan Kravets"

View File

@ -50,7 +50,10 @@ setup(
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Compilers"
],
keywords=("builder library manager atmel avr sam espressif esp freescale "
"kinetis nordic nrf51 nxp lpc silicon labs efm32 st stm32 ti "
"msp430 tiva teensy arduino mbed libopencm3")
keywords=(
"builder library manager embedded development ide continuous "
"integration atmel avr sam espressif esp freescale kinetis nordic "
"nrf51 nxp lpc silicon labs efm32 st stm32 ti msp430 tiva teensy "
"arduino mbed libopencm3"
)
)