Files
platformio-core/platformio/__init__.py

18 lines
513 B
Python
Raw Normal View History

# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
2014-08-04 11:55:55 +03:00
VERSION = (0, 5, 0)
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"
2014-08-04 11:55:55 +03:00
__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"
2014-06-11 21:47:06 +03:00
__pkgmanifesturl__ = "http://platformio.ikravets.com/packages/manifest.json"