Files
platformio-core/platformio/__init__.py
2014-06-13 20:50:51 +03:00

19 lines
557 B
Python

# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
VERSION = (0, 1, "0-dev")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"
__description__ = ("A console tool 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"
__pkgmanifesturl__ = "http://platformio.ikravets.com/packages/manifest.json"