2022-09-26 17:58:19 +01:00
|
|
|
import logging
|
|
|
|
|
2023-02-14 18:10:23 +00:00
|
|
|
import ptscripts
|
|
|
|
|
|
|
|
ptscripts.register_tools_module("tools.changelog")
|
|
|
|
ptscripts.register_tools_module("tools.ci")
|
|
|
|
ptscripts.register_tools_module("tools.docs")
|
|
|
|
ptscripts.register_tools_module("tools.pkg")
|
2023-03-07 14:42:58 -05:00
|
|
|
ptscripts.register_tools_module("tools.pkg.repo")
|
|
|
|
ptscripts.register_tools_module("tools.pkg.build")
|
2023-05-02 20:53:24 -04:00
|
|
|
ptscripts.register_tools_module("tools.pkg.repo.create")
|
|
|
|
ptscripts.register_tools_module("tools.pkg.repo.publish")
|
2023-02-14 18:10:23 +00:00
|
|
|
ptscripts.register_tools_module("tools.pre_commit")
|
|
|
|
ptscripts.register_tools_module("tools.release")
|
|
|
|
ptscripts.register_tools_module("tools.vm")
|
2022-09-26 17:58:19 +01:00
|
|
|
|
|
|
|
for name in ("boto3", "botocore", "urllib3"):
|
|
|
|
logging.getLogger(name).setLevel(logging.INFO)
|