Files
platformio-core/platformio/__init__.py

20 lines
606 B
Python
Raw Normal View History

# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
2014-10-06 23:33:45 +03:00
VERSION = (0, 8, "0-dev")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"
__description__ = ("A cross-platform code builder and library manager "
"(Arduino, MSP430, ARM)")
2014-09-12 19:17:31 +03:00
__url__ = "http://platformio.ikravets.com"
__author__ = "Ivan Kravets"
__email__ = "me@ikravets.com"
2014-09-05 21:27:10 +03:00
__license__ = "MIT License"
__copyright__ = "Copyright (C) 2014 Ivan Kravets"
2014-09-03 23:03:49 +03:00
__apiurl__ = "http://api.platformio.ikravets.com"
__pkgmanifesturl__ = "http://dl.platformio.ikravets.com/packages/manifest.json"