forked from platformio/platformio-core
17 lines
469 B
Python
17 lines
469 B
Python
![]() |
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
||
|
# See LICENSE for details.
|
||
|
|
||
|
VERSION = (0, 0, 0)
|
||
|
__version__ = ".".join([str(s) for s in VERSION])
|
||
|
|
||
|
__title__ = "platformio"
|
||
|
__description__ = ("An easy way to build code with different development"
|
||
|
"platforms")
|
||
|
__url__ = "https://github.com/ivankravets/platformio"
|
||
|
|
||
|
__author__ = "Ivan Kravets"
|
||
|
__email__ = "me@ikravets.com"
|
||
|
|
||
|
__license__ = "MIT Licence"
|
||
|
__copyright__ = "Copyright (C) 2014 Ivan Kravets"
|