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