forked from platformio/platformio-core
22 lines
593 B
Python
22 lines
593 B
Python
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
|
# See LICENSE for details.
|
|
|
|
VERSION = (2, 3, "3.dev1")
|
|
__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"
|