2014-05-18 23:38:59 +03:00
|
|
|
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
|
|
|
# See LICENSE for details.
|
|
|
|
|
2014-09-04 18:58:12 +03:00
|
|
|
VERSION = (0, 7, "0.dev")
|
2014-05-18 23:38:59 +03:00
|
|
|
__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")
|
2014-05-18 23:38:59 +03:00
|
|
|
__url__ = "https://github.com/ivankravets/platformio"
|
|
|
|
|
|
|
|
__author__ = "Ivan Kravets"
|
|
|
|
__email__ = "me@ikravets.com"
|
|
|
|
|
2014-09-05 21:27:10 +03:00
|
|
|
__license__ = "MIT License"
|
2014-05-18 23:38:59 +03:00
|
|
|
__copyright__ = "Copyright (C) 2014 Ivan Kravets"
|
2014-06-07 13:34:31 +03:00
|
|
|
|
2014-09-04 18:58:12 +03:00
|
|
|
# __apiurl__ = "http://127.0.0.1:8080"
|
2014-09-03 23:03:49 +03:00
|
|
|
__apiurl__ = "http://api.platformio.ikravets.com"
|
2014-09-05 21:55:47 +03:00
|
|
|
__pkgmanifesturl__ = "http://dl.platformio.ikravets.com/packages/manifest.json"
|