Files
platformio-core/platformio/__init__.py

21 lines
706 B
Python
Raw Normal View History

# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
2015-06-28 20:38:37 +03:00
VERSION = (2, 2, "0.dev6")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"
__description__ = ("A cross-platform code builder and the missing library "
2015-04-11 20:00:12 +03:00
"manager (Atmel AVR & SAM, Espressif, Freescale Kinetis, "
"Nordic nRF51, NXP LPC, Silicon Labs EFM32, ST STM32, "
"TI MSP430 & Tiva, Teensy, Arduino, mbed, libOpenCM3, etc)")
__url__ = "http://platformio.org"
__author__ = "Ivan Kravets"
__email__ = "me@ikravets.com"
2014-09-05 21:27:10 +03:00
__license__ = "MIT License"
2015-01-01 19:50:45 +02:00
__copyright__ = "Copyright (C) 2014-2015 Ivan Kravets"
__apiurl__ = "http://api.platformio.org"