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
|
|
|
|
2023-12-01 20:28:50 +02:00
|
|
|
VERSION = (6, 1, "12a3")
|
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
|
|
|
|
|
|
|
|
__core_packages__ = {
|
2022-06-15 15:37:20 +03:00
|
|
|
"contrib-piohome": "~3.4.2",
|
2023-04-27 14:24:34 +03:00
|
|
|
"contrib-pioremote": "~1.0.0",
|
2023-12-01 20:28:25 +02:00
|
|
|
"tool-scons": "~4.40600.0",
|
2023-07-17 14:12:52 +03:00
|
|
|
"tool-cppcheck": "~1.21100.0",
|
2022-12-05 11:58:01 +02:00
|
|
|
"tool-clangtidy": "~1.150005.0",
|
2022-04-27 20:47:13 +03:00
|
|
|
"tool-pvs-studio": "~7.18.0",
|
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__
|
2023-07-29 16:01:57 +03:00
|
|
|
|
|
|
|
|
__install_requires__ = [
|
|
|
|
|
# Core requirements
|
|
|
|
|
"bottle == 0.12.*",
|
|
|
|
|
"click >=8.0.4, <=8.2",
|
|
|
|
|
"colorama",
|
|
|
|
|
"marshmallow == 3.*",
|
2023-10-09 11:41:22 +03:00
|
|
|
"pyelftools == 0.30",
|
2023-07-29 16:01:57 +03:00
|
|
|
"pyserial == 3.5.*", # keep in sync "device/monitor/terminal.py"
|
|
|
|
|
"requests == 2.*",
|
|
|
|
|
"semantic_version == 2.10.*",
|
|
|
|
|
"tabulate == 0.*",
|
|
|
|
|
] + [
|
|
|
|
|
# PIO Home requirements
|
|
|
|
|
"ajsonrpc == 1.2.*",
|
2023-12-01 15:55:36 +02:00
|
|
|
"starlette >=0.19, <0.33",
|
2023-07-29 16:01:57 +03:00
|
|
|
"uvicorn >=0.16, <0.24",
|
|
|
|
|
"wsproto == 1.*",
|
|
|
|
|
]
|