Files
platformio-core/platformio/__init__.py
2015-09-10 20:44:39 +03:00

22 lines
586 B
Python

# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
VERSION = (2, 3, 2)
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"
__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"
__email__ = "me@ikravets.com"
__license__ = "MIT License"
__copyright__ = "Copyright (C) 2014-2015 Ivan Kravets"
__apiurl__ = "http://api.platformio.org"