forked from platformio/platformio-core
19 lines
503 B
Python
19 lines
503 B
Python
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
|
# See LICENSE for details.
|
|
|
|
VERSION = (0, 11, "0-dev")
|
|
__version__ = ".".join([str(s) for s in VERSION])
|
|
|
|
__title__ = "platformio"
|
|
__description__ = ("A cross-platform code builder and "
|
|
"the missing library manager")
|
|
__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"
|