2014-05-18 23:38:59 +03:00
|
|
|
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
|
|
|
# See LICENSE for details.
|
|
|
|
|
2015-11-17 23:20:04 +02:00
|
|
|
VERSION = (2, 4, "0.dev4")
|
2014-05-18 23:38:59 +03:00
|
|
|
__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)"
|
|
|
|
)
|
2014-12-30 23:22:42 +02:00
|
|
|
__url__ = "http://platformio.org"
|
2014-05-18 23:38:59 +03:00
|
|
|
|
|
|
|
__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"
|
2014-06-07 13:34:31 +03:00
|
|
|
|
2014-12-30 23:22:42 +02:00
|
|
|
__apiurl__ = "http://api.platformio.org"
|