diff --git a/README.rst b/README.rst index 2eef0d10..05c80928 100644 --- a/README.rst +++ b/README.rst @@ -38,15 +38,16 @@ PlatformIO `Reddit `_ | `Twitter `_ -*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 `_ 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 `_ * `Web 2.0 Library Search `_ diff --git a/docs/index.rst b/docs/index.rst index f0acdcab..a0d4a37c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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, diff --git a/platformio/__init__.py b/platformio/__init__.py index 2035491a..8fe6d930 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,14 +1,15 @@ # Copyright (C) Ivan Kravets # 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" diff --git a/setup.py b/setup.py index 6ae6c1c2..6ba5f435 100644 --- a/setup.py +++ b/setup.py @@ -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" + ) )