2017-06-05 16:02:39 +03:00
|
|
|
# Copyright (c) 2014-present PlatformIO <contact@platformio.org>
|
2015-11-18 17:16:17 +02:00
|
|
|
#
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
|
# limitations under the License.
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2024-10-17 12:33:15 +03:00
|
|
|
VERSION = (6, 1, "17a2")
|
2014-05-18 23:38:59 +03:00
|
|
|
__version__ = ".".join([str(s) for s in VERSION])
|
|
|
|
|
|
|
|
|
|
__title__ = "platformio"
|
2018-01-18 15:11:38 +02:00
|
|
|
__description__ = (
|
2023-08-11 12:07:16 +03:00
|
|
|
"Your Gateway to Embedded Software Development Excellence. "
|
|
|
|
|
"Unlock the true potential of embedded software development "
|
|
|
|
|
"with PlatformIO's collaborative ecosystem, embracing "
|
|
|
|
|
"declarative principles, test-driven methodologies, and "
|
|
|
|
|
"modern toolchains for unrivaled success."
|
2019-09-23 23:13:48 +03:00
|
|
|
)
|
2018-02-13 01:34:24 +02:00
|
|
|
__url__ = "https://platformio.org"
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2020-11-12 20:42:27 +02:00
|
|
|
__author__ = "PlatformIO Labs"
|
|
|
|
|
__email__ = "contact@piolabs.com"
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2015-11-18 17:16:17 +02:00
|
|
|
__license__ = "Apache Software License"
|
2020-11-12 20:42:27 +02:00
|
|
|
__copyright__ = "Copyright 2014-present PlatformIO Labs"
|
2014-06-07 13:34:31 +03:00
|
|
|
|
2020-05-26 22:01:32 +03:00
|
|
|
__accounts_api__ = "https://api.accounts.platformio.org"
|
2022-04-20 18:03:55 +03:00
|
|
|
__registry_mirror_hosts__ = [
|
|
|
|
|
"registry.platformio.org",
|
|
|
|
|
"registry.nm1.platformio.org",
|
2020-08-22 22:52:29 +03:00
|
|
|
]
|
2020-04-21 12:32:03 +03:00
|
|
|
__pioremote_endpoint__ = "ssl:host=remote.platformio.org:port=4413"
|
2020-08-13 18:30:04 +03:00
|
|
|
|
2020-08-23 14:29:31 +03:00
|
|
|
__check_internet_hosts__ = [
|
2020-10-14 19:53:30 +03:00
|
|
|
"185.199.110.153", # Github.com
|
2020-08-23 14:29:31 +03:00
|
|
|
"88.198.170.159", # platformio.org
|
|
|
|
|
"github.com",
|
2022-04-20 18:03:55 +03:00
|
|
|
] + __registry_mirror_hosts__
|