Files
platformio-core/platformio/__init__.py

22 lines
608 B
Python
Raw Normal View History

# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
VERSION = (2, 4, "0.dev4")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"
2015-06-29 22:26:37 +03:00
__description__ = (
2015-11-11 14:59:47 +02:00
"An open-source cross-platform code builder and the missing library "
"manager (Ready for embedded development, IDE and Continuous integration, "
2015-06-29 22:26:37 +03:00
"Arduino and MBED compatible)"
)
__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"